SublimeText2は初めてです。これまでのところ、それは素晴らしいと思いましたが、解決できなかった問題に遭遇しました。Pythonモジュールmechanizeをスクリプトにインポートしようとしています。ただし、実行するたびに(import 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 XMountainLionを使用しています。