我是 SublimeText2 的新手。到目前为止,我发现它非常好,但我只是遇到了一个我无法解决的问题。我正在尝试将 Python 模块mechanize导入我的脚本中。然而,每当运行它(只是导入机械化线),我得到:
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 Mountain Lion 上。