Ich versuche, Setuptools zu installieren, bisher ohne Erfolg. Wenn ich
python3.3 ez_setup.py
Ich erhalte die folgende Fehlermeldung:
Extracting in /tmp/tmp6nn4cz
Traceback (most recent call last):
File "ez_setup.py", line 370, in <module>
sys.exit(main())
File "ez_setup.py", line 367, in main
return _install(tarball, _build_install_args(options))
File "ez_setup.py", line 55, in _install
tar = tarfile.open(tarball)
File "/usr/local/lib/python3.3/tarfile.py", line 1571, in open
raise ReadError("file could not be opened successfully")
tarfile.ReadError: file could not be opened successfully
Ich habe gelesen und es scheint, dass zlib-devel nicht installiert wurde, als die Python-Installation abgeschlossen wurde. Ich habe jedoch Zeile 358 in Modules/Setup auskommentiert, um zlib vor dem Kompilieren zu aktivieren, und wenn ich versuche,
import zlib
auf der Python3.3-Konsole funktioniert es. Und falls es hilft, hier ist das LDD Python3.3:
# ldd `which python3.3`
linux-vdso.so.1 => (0x00007fff79fda000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x00002b96092da000)
libdl.so.2 => /lib64/libdl.so.2 (0x00002b96094f6000)
libutil.so.1 => /lib64/libutil.so.1 (0x00002b96096fa000)
libz.so.1 => /lib64/libz.so.1 (0x00002b96098fe000)
libm.so.6 => /lib64/libm.so.6 (0x00002b9609b12000)
libc.so.6 => /lib64/libc.so.6 (0x00002b9609d95000)
/lib64/ld-linux-x86-64.so.2 (0x00002b96090bc000)
Was kann ich machen?
Antwort1
Ich habe das gleiche Problem wie Sie (keine Ahnung, warum), nachdem ich zlib-devel installiert und anschließend Python 3.3.2 in /usr/local kompiliert habe.
Als Workaround können Sie die Setuptools am einfachsten wie folgt erhalten:
# wget http://pypi.python.org/packages/source/s/setuptools/setuptools-1.1.6.tar.gz --no-check-certificate
# tar xf setuptools-1.1.6.tar.gz
# cd setuptools-1.1.6
# python3.3 setup.py install
Ändern Sie die Versionen in Ihre eigenen Versionen.
Antwort2
yum -y aktualisieren
Laden wir die Installationsdatei mit wget herunter:
wget --kein-Check-Zertifikathttps://pypi.python.org/packages/source/s/setuptools/setuptools-1.4.2.tar.gz
Extrahieren Sie die Dateien aus dem Archiv:
tar -xvf setuptools-1.4.2.tar.gz
Geben Sie das extrahierte Verzeichnis ein:
cd setuptools-1.4.2
Installieren Sie Setuptools mit dem von uns installierten Python (2.7.6).
python2.7 setup.py installieren