安装模块beautifulsoup4

时间:2016-08-30 08:05:48

标签: python-3.x module pycharm

我的问题是安装模块“beautifulsoup4”。在pycharm我正确安装了包,但是当我试图导入模块时,它说没有找到具有该名称的模块。我在互联网上搜索解决方案,我找到了一种方法。 它在终端中使用此命令:

“pip install beautifulsoup4”

但仍然是pycharm或id le shell无法找到模块。我尝试了命令:

“pip install beautifulsoup4 --upgrade”

终端表示它已经是最新的。

2 个答案:

答案 0 :(得分:2)

使用pip3:

pip3 install beautifulsoup4

答案 1 :(得分:2)

我认为问题在于你在pycharm中选择了你的python版本以及你安装的python版本BeautifulSoup

如果使用python3

pip3 install BeautifulSoup

pip3 install bs4

在python2的情况下用pip替换pip3

尝试在pycharm设置中更改python解释器。

或者尝试(仅适用于Ubuntu和Linux) 我不记得确切的包裹。 尝试

apt-get install python3-bs4

apt-get python3-BeautifulSoup
如果你想要python2

再次使用python