没有名为“BeautifulSoup”的模块?

1 python beautifulsoup

我正在使用 Python3 并在我的 Mac 上下载了 BeautifulSoup,但它一直显示“没有名为 bs4 的模块”或“没有名为 BeautifulSoup 的模块”。我该怎么办?

这是 Coursera 上 Web Scraping 的 Py4E 的作业。

from bs4 import BeautifulSoup
Run Code Online (Sandbox Code Playgroud)

没有名为 bs4 的模块

$pip install BeautifulSoup 
Run Code Online (Sandbox Code Playgroud)

无效的语法

import BeautifulSoup from BeautifulSoup
Run Code Online (Sandbox Code Playgroud)

没有名为 BeautifulSoup 的模块

Bio*_*eek 5

首先安装 BeautifuleSoup4

pip install beautifulsoup4
Run Code Online (Sandbox Code Playgroud)

然后像这样导入你的 Python 文件:

from bs4 import BeautifulSoup
Run Code Online (Sandbox Code Playgroud)