我已经使用pip install mechanize
安装了mechanize,这样当我在命令提示符中输入时,响应是:Requirement already satisfied: mechanize in c:\users\wwl\anaconda3\lib\site-packages
。
但是,当我在jupyter笔记本中键入import mechanize
时,会出错:
ImportError: No module named '_mechanize'
。
我哪里出错?
答案 0 :(得分:1)
您使用的是Virtualenv吗?
如果是这样,请确保将全局库导入virtualenv(https://virtualenv.pypa.io/en/stable/userguide/#removing-an-environment)。
如果没有,可能您的Python版本不兼容。 https://stackoverflow.com/a/24001585/2051397
希望有所帮助