i trying install application or software on ubuntu machine hosted on droplet @ digitalocean.
the application hosted on github. called megafuse .
i have read info on github site download repository https://github.com/matteoserva/megafuse.git via wget command on ubunut machine. have unpacked zip file using unzip try make ./megafuse
i following output.
make: pkg-config: command not found g++ -i inc -i /usr/include/cryptopp -i sdk -std=c++0x -o0 -g -fstack-protector-all -wall -d_glibcxx_debug -c src/megafuseapp.cpp -o src/megafuseapp.o make: g++: command not found makefile:43: recipe target 'src/megafuseapp.o' failed make: *** [src/megafuseapp.o] error 127 i installed following application described on github page required compile software.
apt-get install libcrypto++-dev libcurl4-openssl-dev libfreeimage-dev libreadline-dev libfuse-dev i don't know now, have suggestions or perhaps have idea how install application?
the response indicates missing g++ command.
you can install g++ with: sudo apt-install g++
Comments
Post a Comment