2017-02-15 4 views
0

Wenn ich versuche, PyICU zu installieren, erhalte ich die Fehlermeldung "FileNotFoundError: [WinError 2] Das System kann die angegebene Datei nicht finden" (in deutscher Sprache unten im Code).FileNotFoundError beim Versuch, PyICU zu installieren

Aus anderen Fragen habe ich gelernt, dass ich vielleicht mit meinem Weg zu tun habe. Aber da ich neu bei Python bin, weiß ich wirklich nicht, was ich mit diesen Informationen anfangen soll.

(C:\Users\max.nkern\AppData\Local\Continuum\Anaconda3) C:\Users\max.nkern>pip install git+https://github.com/ovalhub/pyicu 
Collecting git+https://github.com/ovalhub/pyicu 
Cloning https://github.com/ovalhub/pyicu to c:\users\max~1.nke\appdata\local\temp\pip-9reie9cq-build 
Complete output from command python setup.py egg_info: 
Traceback (most recent call last): 
    File "<string>", line 1, in <module> 
    File "C:\Users\MAX~1.NKE\AppData\Local\Temp\pip-9reie9cq-build\setup.py", line 22, in <module> 
    ICU_VERSION = check_output(('icu-config', '--version')).strip() 
    File "c:\users\max.nkern\appdata\local\continuum\anaconda3\lib\subprocess.py", line 626, in check_output 
    **kwargs).stdout 
    File "c:\users\max.nkern\appdata\local\continuum\anaconda3\lib\subprocess.py", line 693, in run 
    with Popen(*popenargs, **kwargs) as process: 
    File "c:\users\max.nkern\appdata\local\continuum\anaconda3\lib\subprocess.py", line 947, in __init__ 
    restore_signals, start_new_session) 
    File "c:\users\max.nkern\appdata\local\continuum\anaconda3\lib\subprocess.py", line 1223, in _execute_child 
    cwd, startupinfo) 
FileNotFoundError: [WinError 2] Das System kann die angegebene Datei nicht finden 

---------------------------------------- 
Command "python setup.py egg_info" failed with error code 1 in C:\Users\MAX~1.NKE\AppData\Local\Temp\pip-9reie9cq-build\ 

An diesem Punkt weiß ich wirklich nicht weiter.

Bitte geben Sie mir eine Hand!

Thx.

Antwort

0

Ich hatte auch das gleiche Problem. Dann befolgte ich diese Installationsanweisungen zum Buchstaben: https://pypi.python.org/pypi/PyICU/

+0

Ty so viel! Nach gründlicher Befolgung der Anweisungen funktionierte es! –

Verwandte Themen