正在安装 python 包

Installing python package

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

然而,当我在 jupyter notebook 中输入 import mechanize 时,出现错误:

ImportError: No module named '_mechanize'.

我哪里做错了?

你在使用 Virtualenv 吗?

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

如果不是,可能是您的 Python 版本不兼容。

希望对您有所帮助