web-dev-qa-db-ja.com

ImportError:既存のlazylinkerコンパイル済みファイルのバージョンチェック。バージョン0.211を探していますが、見つかりませんでした

C:\Users\meela\Anaconda3\python.exe E:/TTIGAN/test.py

You can find the C code in this temporary file: C:\Users\meela\AppData\Local\Temp\theano_compilation_error_zncbj7_k
Traceback (most recent call last):
  File "C:\Users\meela\Anaconda3\lib\site-packages\theano\gof\lazylinker_c.py", line 81, in <module>
    actual_version, force_compile, _need_reload))

ImportError: Version check of the existing lazylinker compiled file. Looking for version 0.211, but found None. Extra debug information: force_compile=False, _need_reload=True

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\meela\Anaconda3\lib\site-packages\theano\gof\lazylinker_c.py", line 105, in <module>
    actual_version, force_compile, _need_reload))

ImportError: Version check of the existing lazylinker compiled file. Looking for version 0.211, but found None. Extra debug information: force_compile=False, _need_reload=True

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "E:/TTIGAN/test.py", line 1, in <module>
    import skipthoughts

  File "E:\TTIGAN\skipthoughts.py", line 6, in <module>
    import theano

  File "C:\Users\meela\Anaconda3\lib\site-packages\theano\__init__.py", line 110, in <module>

    from theano.compile import (

  File "C:\Users\meela\Anaconda3\lib\site-packages\theano\compile\__init__.py", line 12, in <module>

    from theano.compile.mode import *

  File "C:\Users\meela\Anaconda3\lib\site-packages\theano\compile\mode.py", line 11, in <module>

    import theano.gof.vm

  File "C:\Users\meela\Anaconda3\lib\site-packages\theano\gof\vm.py", line 674, in <module>

    from . import lazylinker_c

  File "C:\Users\meela\Anaconda3\lib\site-packages\theano\gof\lazylinker_c.py", line 140, in <module>

    preargs=args)

  File "C:\Users\meela\Anaconda3\lib\site-packages\theano\gof\cmodule.py", line 2388, in compile_str

    (status, compile_stderr.replace('\n', '. ')))
. 

Process finished with exit code 1
8
Mlan604

私は同じ問題を抱えていたので、解決するのに2日かかりました!これはパス環境からのもので、別のmingwパスを変数にインポートして、削除しました!

2
Vahid Khatami

こちらの同じ問題は、Python用のmingw-w64インポートライブラリ(conda経由のWindows)をCLIタイプにインストールすることで解決します。

conda install -c anaconda libpython
10
hayim lusthaus