erro de instalação elevada

erro de instalação elevada

Olá, acabei de instalar o python conforme destacado abaixo, há um erro no altinstall, devo usar make install?

 ./configure
 make
 sudo make altinstall

ou

./configure
make
sudo make install

Eu estava seguindo um tutorial e esse foi o erro.

File "/home/plutes/Downloads/Python-3.6.6rc1/Lib/ensurepip/__init__.py", line 117, in _bootstrap
    return _run_pip(args + [p[0] for p in _PROJECTS], additional_paths)
  File "/home/plutes/Downloads/Python-3.6.6rc1/Lib/ensurepip/__init__.py", line 27, in _run_pip
    import pip._internal
**zipimport.ZipImportError: can't decompress data; zlib not available
Makefile:1113: recipe for target 'altinstall' failed
make: *** [altinstall] Error 1**

plutes@plutes-Lenovo-G50-30:~/Downloads/Python-3.6.6rc1$ cd

plutes@plutes-Lenovo-G50-30:~$ python
python             python3            python3.6m-config  python3m
python2            python3.6          python3.7          
python2.7          python3.6m         python3.7m         
plutes@plutes-Lenovo-G50-30:~$ python3.6

Python 3.6.6rc1 (default, Jun 17 2018, 21:36:49) 
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> help()

Welcome to Python 3.6's help utility!

as you can see it works, but I am unsure about future uses. thanks for any guidance.

plutes@plutes-Lenovo-G50-30:~$ python3.6
Python 3.6.6rc1 (default, Jun 17 2018, 21:36:49) 
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello, World!")  
Hello, World!
>>> 

Responder1

Acabei de ter o mesmo problema ao instalar python3.7.3no ubuntu18.04. Seguindoesta mensageme executando:

sudo apt-get install build-essential libsqlite3-dev sqlite3 bzip2 libbz2-dev \
zlib1g-dev libssl-dev openssl libgdbm-dev libgdbm-compat-dev liblzma-dev libreadline-dev \
libncursesw5-dev libffi-dev uuid-dev

Permitiu-me executar com sucesso o sudo make altinstall.

Responder2

Tive o mesmo problema ao usar o Ubuntu e as duas respostas principais não funcionaram. Usei a resposta que recebihttps://github.com/pyenv/pyenv/wiki/common-build-problemse tentei novamente e funcionou. basicamente eu fiz:

sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev \
libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev \
xz-utils tk-dev libffi-dev liblzma-dev python-openssl git

e então:

sudo make altinstall

Responder3

Use os seguintes comandos nesta ordem:

  1. ./configure
  2. make clean
  3. make
  4. sudo make install

Responder4

A instalação das seguintes dependências resolverá o problema:

sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev
libssl-dev libreadline-dev libffi-dev wget

informação relacionada