安装python包

时间:2017-02-22 20:42:31

标签: python pip mechanize

我已经使用pip install mechanize安装了mechanize,这样当我在命令提示符中输入时,响应是:Requirement already satisfied: mechanize in c:\users\wwl\anaconda3\lib\site-packages

但是,当我在jupyter笔记本中键入import mechanize时,会出错:

ImportError: No module named '_mechanize'

我哪里出错?

1 个答案:

答案 0 :(得分:1)

您使用的是Virtualenv吗?

如果是这样,请确保将全局库导入virtualenv(https://virtualenv.pypa.io/en/stable/userguide/#removing-an-environment)。

如果没有,可能您的Python版本不兼容。 https://stackoverflow.com/a/24001585/2051397

希望有所帮助