我是SublimeText2的新手。到目前爲止,我發現它非常出色,但我遇到了一個我無法解決的問題。我正在嘗試將Python模塊機械化導入到我的腳本中。然而,只要運行它(只是進口機械化線),我得到:嘗試在SublimeText2中導入python模塊時出現ImportError
Traceback (most recent call last):
File "/Users/gabrielbianconi/Desktop/test.py", line 1, in <module>
import mechanize
ImportError: No module named mechanize
[Finished in 0.3s with exit code 1]
然而,當我運行在終端這條線,它完美的作品:
gb-air:~ gabrielbianconi$ python
Python 2.7.2 (v2.7.2:8527427914a2, Jun 11 2011, 15:22:34)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import mechanize
>>>
我想這是ST2的問題。我看到Mac上的ST2使用系統的python,所以我不明白它爲什麼不識別模塊。
非常感謝。
編輯:我在OS X山獅。
希望這將有助於: http://stackoverflow.com/questions/13239839/sublime-text2-import-error-no-module-named-gnuplot –