安装mechanize后,我似乎无法导入它。
我已经尝试从 pip、easy_install 以及通过python setup.py install
这个 repo 安装:https ://github.com/abielr/mechanize 。所有这一切都无济于事,因为每次我进入我的 Python 交互时,我都会得到:
Python 2.7.3 (default, Aug 1 2012, 05:14:39)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import mechanize
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named mechanize
>>>
我之前运行的安装报告它们已成功完成,因此我希望导入能够正常工作。什么可能导致此错误?