Estou lutando para fazer o Python 3.7 a partir do código-fonte no Linux Mint 18.3
Algum problema com o gcc.
Estou usando uma versão desatualizada do gcc?
Aqui está o que o script de configuração do python3.7 grava na saída padrão
./configure
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for python3.7... no
checking for python3... python3
checking for --enable-universalsdk... no
checking for --with-universal-archs... no
checking MACHDEP... checking for --without-gcc... no
checking for --with-icc... no
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/home/boldi/Downloads/Python-3.7.3':
configure: error: C compiler cannot create executables
See `config.log' for more details
Quando eu verifico config.log
Vejo algum problema com a opção gcc -V
gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11)
configure:3909: $? = 0
configure:3898: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
Responder1
Pelos códigos de erro, parece que a distribuição não contém o build-essential
pacote. Para construir python a partir do código-fonte:
- Baixe os pacotes necessários:
apt install build-essential wget ca-certificates
- Baixar mais recentetarball de origem:
wget https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tgz
- Extraia o tarball:
tar -xf Python-3.7.3.tgz
cd
afim disso- Configure o Makefile:
./configure
- Compilar e instalar:
make && make install