VS代码BeautifulSoup4问题:ModuleNotFoundError:没有名为“ bs4”的模块

时间:2020-02-18 08:56:55

标签: python beautifulsoup

运行Flask应用程序时出现错误。该项目包括剪贴,所以我在python虚拟环境中安装了BeatifulSoup4。运行烧瓶时,出现错误。

ModuleNotFoundError:没有名为“ bs4”的模块

但是我正确安装了BeautifulSoup4。 pip3 install beautifulsoup4

有一件奇怪的事。 当我在终端上写时,它成功导入了bs4。

enter image description here

1 个答案:

答案 0 :(得分:1)

您必须安装bs4软件包才能运行beautifulsoup4。如果仅安装beautifulsoup4,则无法正常运行,因为您正在使用以下导入:

from bs4 import BeautifulSoup

此外,由于BeautifulSoup是bs4的子程序包,因此无法正常工作。