我想知道如何在 Heroku 服务器上使用 BeautifulSoup4。在我的requirements.txt文件中我写了:“BeautifulSoup==4.9.1”,但我收到错误:ERROR: Could not find a version that satisfies the requirement BeautifulSoup==4 (from -r /tmp/build_d624b770_/requirements.txt (line 1)) (from versions: 3.2.0, 3.2.1, 3.2.2)
ERROR: No matching distribution found for BeautifulSoup==4 (from -r /tmp/build_d624b770_/requirements.txt (line 1))那么我该如何使用BeautifulSoup4呢?
1 回答
慕标琳琳
TA贡献1830条经验 获得超9个赞
因为我看不到你的requirements.txt
文件,从看到错误我假设它有类似的东西BeautifulSoup==4
,但安装 BeautifulSoup 的方式是pip install bs4
因为它不像 BS 的版本 4,它是 bs4 本身,所以你requirements.txt
必须包含bs4==0.0.0
orbs4==0.0.1
或只是简单地bs4
使用任何其他依赖项。
添加回答
举报
0/150
提交
取消