2014-02-19 57 views
2

我是一個試圖學習Cython的新手。我的操作系統是Windows 7,我使用Eclipse PyDev作爲Python開發的IDE。使用Eclipse獲取Cython在Windows 7中的工作PyDev

我試圖安裝和測試用Cython根據this指南:

enter image description here

這裏是我的環境變量PATH的內容:代碼塊下安裝

C:\texlive\2012\bin\win32;C:\Users\jjepoh\Jonne's_Programs\CodeBlocks\MinGW\bin;C:\Users\jjepoh\Jonne's_Programs\SSH client;C:\Users\jjepoh\Jonne's_Programs\Python\Scripts; 

MinGW的:

enter image description here

我已經使用Windows二進制安裝用Cython 0.20.1從here

enter image description here

我已經安裝了Python 2.7.5:

enter image description here

在這裏你可以看到下安裝用Cython Python:

enter image description here

hello.pyx, test_cython.pysetup.py根據指南:

enter image description here

看來我可以編譯C文件,但我做錯了什麼我think..here是最終的結果:

enter image description here

你們有什麼想法,我在這裏錯過了什麼?爲什麼我不能導入hello.pyx模塊?

感謝您的協助。對不起,大量的圖片,我認爲這將有助於儘可能多的細節。當問及我會提供更多的細節=)

+1

這與http://stackoverflow.com/questions/2817869/error-unable-to-find-vcvarsall-bat非常相似您的c文件編譯不正確。這讓我覺得很奇怪,因爲我通常會在64位Python安裝中預期這個錯誤。對另一個問題的第二個答案可能會爲你解決。 – IanH

+0

+1 @IanH感謝您的幫助!我會試一試=) – jjepsuomi

+0

@IanH我得到它的工作!=)這一個http://stackoverflow.com/a/10501736/1565754和這一個做到了! http://stackoverflow.com/a/6035864/1565754 – jjepsuomi

回答

相關問題