2017-02-15 28 views
0

當我嘗試安裝PyICU時,出現錯誤消息「FileNotFoundError:[WinError 2]系統無法找到指定的文件」(德文下面的代碼)。試圖安裝PyICU時出現FileNotFoundError

從其他問題我知道,我可能不得不與我的路徑。但是因爲我是Python的新手,我真的不知道該如何處理這些信息。

(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\ 

在這一點上,我真的不知道如何繼續。

請給我一隻手!

Thx。

回答

相關問題