2014-10-22 36 views
3

我嘗試在Windows 7 x64上安裝帶有Anaconda Python分發版本3.4的odespy(https://github.com/hplgit/odespy)。如果我開始安裝使用Fortran求解器在Windows 64位上安裝Odespy

python setup.py install --no-fortran 

安裝沒問題。因爲我需要額外的Fortran求解器,有一個消息「只有MS編譯器支持與Win64上gfortran」,我已經安裝了Visual Studio 2010年當我開始

python setup.py build --compiler=msvc 

我從喜歡的鏈接出現錯誤編譯這樣的:

_odepack.lib(opkda2.o) : error LNK2001: unresolved external symbol _gfortran_runtime_error_at_odepack.lib(solve_odepack.o) : error LNK2019: unresolved external symbol _gfortran_os_error referenced in function solve__odepack.lib(solve_odepack.o) : error LNK2019: unresolved external symbol _gfortran_compare_string referenced in function solve_ 

我已經上傳完整的編譯輸出這裏: http://n.ethz.ch/~faheller/download/misc/output_compilation_odespy.txt

是否有人知道了這個問題?

回答