无法在Python 3.6中导入Beautiful Soup

时间:2017-11-01 12:33:41

标签: python ubuntu beautifulsoup python-3.6

我正在使用Ubuntu而我刚刚使用apt通过运行命令sudo apt-get install python3-bs4来安装Beautiful Soup。 Runnig apt list --installed | grep bs4 给出以下输出:

python3-bs4/xenial,xenial,now 4.4.1-1 all [installed]

尽管如此,我无法导入bs4。这是代码和与之相关的错误:

>>> from bs4 import BeautifulSoup
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'bs4'

1 个答案:

答案 0 :(得分:0)

您可能需要将Beautiful Soup 4安装到您的虚拟环境中。

pip install beautifulsoup4