2017-05-07 76 views
1

我正在使用keras with theano作爲後端,在Windows 10上構建神經網絡。我的Python版本爲2.7。問題是,當我嘗試使用keras時,我不斷收到路徑錯誤。Keras已安裝但未能正常工作

$python 
>>import keras 

給我的錯誤

Problem occurred during compilation with the command line below: 
"g++" -shared -g -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -m64 -DMS_WIN64 -I"C:\Python27\lib\site-packages\numpy\core\include" -I"C:\Python27\include" -I"C:\Python27\lib\site-packages\theano-0.9.0-py2.7.egg\theano\gof" -L"C:\Python27\libs" -L"C:\Python27" -o C:\Users\Patrick\AppData\Local\Theano\compiledir_Windows-10-10.0.14393-Intel64_Family_6_Model_61_Stepping_4_GenuineIntel-2.7.11-64\lazylinker_ext\lazylinker_ext.pyd C:\Users\Patrick\AppData\Local\Theano\compiledir_Windows-10-10.0.14393-Intel64_Family_6_Model_61_Stepping_4_GenuineIntel-2.7.11-64\lazylinker_ext\mod.cpp -lpython27 
The system cannot find the path specified. 

Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
    File "C:\Python27\lib\site-packages\keras-2.0.3-py2.7.egg\keras\__init__.py", line 3, in <module> 
    from . import activations 
    File "C:\Python27\lib\site-packages\keras-2.0.3-py2.7.egg\keras\activations.py", line 4, in <module> 
    from . import backend as K 
    File "C:\Python27\lib\site-packages\keras-2.0.3-py2.7.egg\keras\backend\__init__.py", line 70, in <module> 
    from .theano_backend import * 
    File "C:\Python27\lib\site-packages\keras-2.0.3-py2.7.egg\keras\backend\theano_backend.py", line 3, in <module> 
    import theano 
    File "C:\Python27\lib\site-packages\theano-0.9.0-py2.7.egg\theano\__init__.py", line 66, in <module> 
    from theano.compile import (
    File "C:\Python27\lib\site-packages\theano-0.9.0-py2.7.egg\theano\compile\__init__.py", line 10, in <module> 
    from theano.compile.function_module import * 
    File "C:\Python27\lib\site-packages\theano-0.9.0-py2.7.egg\theano\compile\function_module.py", line 21, in <module> 
    import theano.compile.mode 
    File "C:\Python27\lib\site-packages\theano-0.9.0-py2.7.egg\theano\compile\mode.py", line 10, in <module> 
    import theano.gof.vm 
    File "C:\Python27\lib\site-packages\theano-0.9.0-py2.7.egg\theano\gof\vm.py", line 662, in <module> 
    from . import lazylinker_c 
    File "C:\Python27\lib\site-packages\theano-0.9.0-py2.7.egg\theano\gof\lazylinker_c.py", line 127, in <module> 
    preargs=args) 
    File "C:\Python27\lib\site-packages\theano-0.9.0-py2.7.egg\theano\gof\cmodule.py", line 2316, in compile_str 
    (status, compile_stderr.replace('\n', '. '))) 
. ception: Compilation failed (return status=1): The system cannot find the path specified. 
>>> 

我可以告訴大家,我需要添加到我的系統變量路徑(至少我是這麼認爲的......),但不管我加我仍然得到錯誤。我曾嘗試加入

C:\Python27\lib 
C:\Python27\lib\site-packages 

基本上,它所說的任何路徑都不能指定。需要注意的是,我在安裝scipy時遇到了很多麻煩,必須從http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy獲取.whl文件才能確定是否有幫助。那是我的問題。

+0

它可能找不到g ++,你有它安裝和在哪裏? PATH中的路徑是什麼? –

+0

如果您沒有安裝g ++,請嘗試MinGW - 我在這裏找到了我的:https://nuwen.net/mingw.html –

回答

0

我也遇到了同樣的問題,並通過刪除其他python版本來解決。確保你只安裝了1個python。如果有多個,事情有時不能很好地工作。