Você precisa instalar o g++
ou algum pacote com nome semelhante para compilar o código c ++.
* texto enfatizado * quando tento executar um programa, recebo o seguinte erro.
ubuntu@ubuntu-VirtualBox:~/Desktop$ make
g++ -Wall -Wno-switch -I. -g -c -o pass.o pass.cpp
make: g++: Command not found
make: *** [pass.o] Error 127
Eu não consegui instalar o gcc 4.8.2 porque ele disse que não conseguiu encontrá-lo. Eu instalei o 4.8
Eu fiz o seguinte para instalar o gcc
sudo add-apt-repository ppa:ubuntu-toolchain-f/test
sudo apt-get update
sudo apt-get install gcc-4.8
em seguida eu fiz
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.6
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 40 --slave /usr/bin/g++ g++ /usr/bin/g++-4.8
sudo update-alternatives --config gcc
a única coisa em que consigo pensar é que não tenho o 4.8 quando digito o comando gcc -v diz: gcc versão 4.8.1 (Ubuntu 4.8.1-2ubuntu1 ~ 12.04)
ok eu corro:
ubuntu@ubuntu-VirtualBox:~$ sudo apt-get install g++
Reading package lists... Done
Building dependency tree
Reading state information... Done
g++ is already the newest version.
g++ set to manually installed.
The following package was automatically installed and is no longer required:
thunderbird-globalmenu
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 293 not upgraded.
ubuntu@ubuntu-VirtualBox:~$ g++ -v
The program 'g++' can be found in the following packages:
* g++
* pentium-builder
Try: sudo apt-get install <selected package>
ubuntu@ubuntu-VirtualBox:~/Desktop$ g++ --help | grep version
The program 'g++' can be found in the following packages:
* g++
* pentium-builder
Try: sudo apt-get install <selected package>
ubuntu@ubuntu-VirtualBox:~/Desktop$ g++ --version
The program 'g++' can be found in the following packages:
* g++
* pentium-builder
Try: sudo apt-get install <selected package>
ubuntu@ubuntu-VirtualBox:~/Desktop$ ^C
ubuntu@ubuntu-VirtualBox:~/Desktop$
este comando instala
sudo apt-get install g++-4.4 libstdc++6-4.4-dev 4.4 (I would like 4.8)
ubuntu@ubuntu-VirtualBox:~/Desktop$ sudo apt-get install g++-4.4 libstdc++6-4.4-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
cpp-4.4 gcc-4.4 gcc-4.4-base
Suggested packages:
gcc-4.4-locales g++-4.4-multilib gcc-4.4-doc libstdc++6-4.4-dbg
gcc-4.4-multilib libmudflap0-4.4-dev libgcc1-dbg libgomp1-dbg
libmudflap0-dbg libcloog-ppl0 libppl-c2 libppl7 libstdc++6-4.4-doc
The following NEW packages will be installed:
cpp-4.4 g++-4.4 gcc-4.4 gcc-4.4-base libstdc++6-4.4-dev
0 upgraded, 5 newly installed, 0 to remove and 292 not upgraded.
Need to get 13.0 MB of archives.
After this operation, 33.4 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://us.archive.ubuntu.com/ubuntu/ precise/main gcc-4.4-base i386 4.4.7-1ubuntu2 [12.0 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu/ precise/main cpp-4.4 i386 4.4.7-1ubuntu2 [3,606 kB]
Get:3 http://us.archive.ubuntu.com/ubuntu/ precise/main gcc-4.4 i386 4.4.7-1ubuntu2 [3,079 kB]
Get:4 http://us.archive.ubuntu.com/ubuntu/ precise/main libstdc++6-4.4-dev i386 4.4.7-1ubuntu2 [1,494 kB]
Get:5 http://us.archive.ubuntu.com/ubuntu/ precise/main g++-4.4 i386 4.4.7-1ubuntu2 [4,780 kB]
Fetched 13.0 MB in 3s (3,563 kB/s)
Selecting previously unselected package gcc-4.4-base.
(Reading database ... 222776 files and directories currently installed.)
Unpacking gcc-4.4-base (from .../gcc-4.4-base_4.4.7-1ubuntu2_i386.deb) ...
Selecting previously unselected package cpp-4.4.
Unpacking cpp-4.4 (from .../cpp-4.4_4.4.7-1ubuntu2_i386.deb) ...
Selecting previously unselected package gcc-4.4.
Unpacking gcc-4.4 (from .../gcc-4.4_4.4.7-1ubuntu2_i386.deb) ...
Selecting previously unselected package libstdc++6-4.4-dev.
Unpacking libstdc++6-4.4-dev (from .../libstdc++6-4.4-dev_4.4.7-1ubuntu2_i386.deb) ...
Selecting previously unselected package g++-4.4.
Unpacking g++-4.4 (from .../g++-4.4_4.4.7-1ubuntu2_i386.deb) ...
Processing triggers for man-db ...
Setting up gcc-4.4-base (4.4.7-1ubuntu2) ...
Setting up cpp-4.4 (4.4.7-1ubuntu2) ...
Setting up gcc-4.4 (4.4.7-1ubuntu2) ...
Setting up g++-4.4 (4.4.7-1ubuntu2) ...
Setting up libstdc++6-4.4-dev (4.4.7-1ubuntu2) ...
Eu tentei substituir 4.4 por 4.8, mas não funciona. Mais importante, depois de usar o comando 4.4 acima, ainda recebo o erro 127.
Eu tenho aprendido a programar no mês passado, então quando você responder, por favor, saiba que sou mais novo do que novo e não entendo muito, se houver alguma coisa.
Você precisa instalar o g++
ou algum pacote com nome semelhante para compilar o código c ++.
Instale g + +. Isto pode ser feito, e. por
sudo apt-get install g++
Não tenho certeza se você realmente precisa de uma versão específica. Na maioria dos casos, o padrão do sistema deve estar ok para isso.
Não é sobre o g + +. Verifique se você não tem nenhum espaço extra ou caracteres de nova linha. Se tudo seguir o padrão Makefile , tudo ficará bem. Além disso, verifique se você especificou o caminho corretamente.
Espero ajudar alguém, porque acho que você está com esse problema.
Você pode ter que instalar o essencial da compilação executando sudo apt-get install build-essential
. Esse é o erro # 1 se você tiver uma instalação nova e quiser compilar algo