2017-01-19 7 views
0

Ich versuche, Pip für Python 3.0 zu installieren (Win XP). Ich habe get-pip.py heruntergeladen, öffne es im Shell-Redactor und beginne als "Run module". Ich bin noch nicht glücklich mit Ergebnis: (das gleiche habe ich "python get-pip.py" in einer Befehlszeile). Wie löst man dieses Problem? Dank vielPip installieren für Python 3.0 (Win XP)

IDLE 3.0  
>>> ================================ RESTART ================================ 
>>> 
Traceback (most recent call last): 
    File "D:\Python30\get-pip.py", line 20061, in <module> 
    main() 
    File "D:\Python30\get-pip.py", line 194, in main 
    bootstrap(tmpdir=tmpdir) 
    File "D:\Python30\get-pip.py", line 82, in bootstrap 
    import pip 
    File "e:\temp\tmp0azuy8\pip.zip\pip\__init__.py", line 21, in <module> 
    File "e:\temp\tmp0azuy8\pip.zip\pip\_vendor\requests\__init__.py", line 62, in <module> 
    File "e:\temp\tmp0azuy8\pip.zip\pip\_vendor\requests\packages\__init__.py", line 29, in <module> 
ImportError: No module named urllib3 
>>> 
+1

Python 3.0 ist sehr alt, 3.6 ist die aktuelle Version, die 'pip' enthält. Vielleicht haben Sie mehr Glück mit der neuesten Version. – cdarke

Antwort

0

Von pip docs

pip arbeitet mit CPython Versionen 2.6, 2.7, 3.3, 3.4, 3.5 und auch PyPy.

Installieren Sie eine neuere Python-Version wie Python < = 3.4.3. Die neuesten Versionen> = 3.5 und höher sind nicht mit Windows XP kompatibel.

+0

OK, 3.4.3 sieht OK aus. Vielen Dank – user3788440