Auf RHEL 6.6 habe ich Python 3.5.1 aus der Quelle installiert. Ich versuche, pip3 über get-pip.py zu installieren, aber ich bekomme
Traceback (most recent call last):
File "get-pip.py", line 19177, in <module>
main()
File "get-pip.py", line 194, in main
bootstrap(tmpdir=tmpdir)
File "get-pip.py", line 82, in bootstrap
import pip
zipimport.ZipImportError: can't decompress data; zlib not available
Es funktioniert mit dem installierten Python 2.6.6. Ich habe online nach Antworten gesucht, aber ich kann scheinbar keine finden, die für mich funktioniert.
bearbeiten:yum search zlib
jzlib.i686 : JZlib re-implementation of zlib in pure Java
perl-Compress-Raw-Zlib.i686 : Low-Level Interface to the zlib compression library
perl-Compress-Zlib.i686 : A module providing Perl interfaces to the zlib compression library
perl-IO-Zlib.i686 : Perl IO:: style interface to Compress::Zlib
zlib.i686 : The zlib compression and decompression library
zlib-debuginfo.i686 : Debug information for package zlib
zlib-devel.i686 : Header files and libraries for Zlib development
perl-IO-Compress-Zlib.i686 : Perl interface to allow reading and writing of gzip and zip data
Name and summary matches only, use "search all" for everything.
Antwort1
Ubuntu 16.10+und Python 3.7 dev
sudo apt-get install zlib1g-dev
Hinweis: Ich habe dies nur hier eingefügt, weil es das oberste Suchergebnis für den Fehler war, aber dadurch wurde mein Problem behoben.
Update: gilt auch für Ubuntu 14.04LTS und den Basiskernel 4.1+
Antwort2
Die Lösung ist : #yum install zlib-devel
Antwort3
Kopieren Sie einfach diesCode:
CFLAGS="-I$(brew --prefix readline)/include -I$(brew --prefix openssl)/include -I$(xcrun --show-sdk-path)/usr/include" \
LDFLAGS="-L$(brew --prefix readline)/lib -L$(brew --prefix openssl)/lib" \
PYTHON_CONFIGURE_OPTS=--enable-unicode=ucs2 \
pyenv install -v 3.6.0
Antwort4
Ich gebe meinen Senf dazu. Ich beschäftige mich seit drei Stunden mit diesem Problem und habe festgestellt, dass Python 3.6 bei mir in /usr/local/bin/ installiert war.
Ich habe die Konfiguration mit --prefix==/usr/bin neu erstellt und pip installiert.
Gesammelte Pakete installieren: setuptools, pip. pip-9.0.1 setuptools-28.8.0 erfolgreich installiert.