我该如何安装 BeautifulSoup?我一直收到“没有名为 bs4 的模块”

我该如何安装 BeautifulSoup?我一直收到“没有名为 bs4 的模块”

当我尝试导入 Beautifulsoup

import bs4

我一直收到错误

ImportError: No module named bs4

我尝试使用 Python 3 尝试以下所有操作(单独和一起)来解决这个问题,但没有成功。出了什么问题?

sudo pip3 install beautifulsoup4
sudo apt-get install python3-bs4

答案1

下面的方法似乎有效:

sudo pip3.6 install bs4
from bs4 import BeautifulSoup

相关内容