Altinstall-Fehler

Altinstall-Fehler

Hallo, ich habe gerade Python installiert, wie unten hervorgehoben, gibt es einen Fehler für Altinstall, soll ich Make Install verwenden?

 ./configure
 make
 sudo make altinstall

oder

./configure
make
sudo make install

Ich habe ein Tutorial befolgt und hier ist der Fehler aufgetreten.

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!
>>> 

Antwort1

Ich habe gerade das gleiche Problem bei der Installation python3.7.3auf erlebt ubuntu18.04.diese Nachrichtund läuft:

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

Ermöglichte mir, erfolgreich zu laufen sudo make altinstall.

Antwort2

Ich hatte das gleiche Problem mit Ubuntu und die beiden Top-Antworten funktionierten nicht. Ich habe die Antwort verwendet, die ich vonhttps://github.com/pyenv/pyenv/wiki/common-build-problemsund habe es noch einmal versucht und es hat funktioniert. Im Wesentlichen habe ich Folgendes gemacht:

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

und dann:

sudo make altinstall

Antwort3

Verwenden Sie die folgenden Befehle in dieser Reihenfolge:

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

Antwort4

Das Installieren der folgenden Abhängigkeiten löst das Problem:

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

verwandte Informationen