2017-07-11 94 views
0

嗨我一直在嘗試安裝SciKit-Image很長時間了。我已經安裝了所有的依賴項並將其全部升級。任何建議將不勝感激。安裝SciKit-Image錯誤127

下面是當我通過PIP嘗試安裝

error: Command "cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -Ic:\python\lib\site-packages\numpy\core\include -Ic:\python\include -Ic:\python\include /Tcskimage\_shared\geometry.c /Fobuild\temp.win32-3.6\Release\skimage\_shared\geometry.obj" failed with exit status 127 



Command "c:\python\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\iankr\\AppData\\Local\\Temp\\pip-build-lba2niop\\scikit-image\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\iankr\AppData\Local\Temp\pip-k16oa42b-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\iankr\AppData\Local\Temp\pip-build-lba2niop\scikit-image\ 

會發生什麼,在這裏是易發生了什麼事安裝

error: Setup script exited with error: Command "cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -Ic:\python\lib\site-packages\numpy\core\include -Ic:\python\include -Ic:\python\include /Tcskimage\_shared\geometry.c /Fobuild\temp.win32-3.6\Release\skimage\_shared\geometry.obj" failed with exit status 127 

回答

0

您需要該包的本地代碼,C編譯器。你可以從微軟獲得的Python 2.7:

https://www.microsoft.com/en-us/download/details.aspx?id=44266

的完整列表爲Python的其他版本,請訪問:

https://wiki.python.org/moin/WindowsCompilers

+0

我已經安裝了Visual C++的14,其網站上說,推薦用於Python 3.6。我仍然遇到同樣的錯誤,安裝並運行後是否需要對文件進行任何操作?謝謝你的消化。 –

+0

我不知道如何設置編譯器。我已經安裝並運行它,但不知道安裝文件的位置,並且似乎沒有任何幫助。你有更多的想法嗎? –

+0

也許其中之一將幫助https://stackoverflow.com/questions/41724445/python-pip-on-windows-command-cl-exe-failed – kichik