我正在尝试使用以下命令在我的mac中安装beautifulsoup4
:
pip3 install beautifulsoup4
但我收到以下错误:
Could not find a version that satisfies the requirement beautifulsoup4 (from versions: )
No matching distribution found for beautifulsoup4
我该如何解决这个问题?
答案 0 :(得分:2)
使用pip3 install --upgrade pip
更新点子。现在你应该可以安装beautifulsoup pip3 install beautifulsoup4
了。如果失败,请尝试:python3 -m pip install beautifulsoup4
答案 1 :(得分:1)
如果您使用的是最新版本的Debian或Ubuntu Linux,则可以使用系统软件包管理器安装Beautiful Soup:
endowmentAssetClassVariableNames.v[[i]][["upper.thresh"]]
# or with the cat
cat("Relevant GPD Info for ",
endowmentAssetClassVariableNames.v[[i]][["upper.thresh"]],
"\n")
(适用于Python 2)
$ apt-get install python-bs4
(适用于Python 3)
或者
您可以使用easy_install或pip安装它。
$ apt-get install python3-bs4
如果您使用的是Anaconda发行版,则可以使用此命令。
$ easy_install beautifulsoup4
$ pip install beautifulsoup4
希望这有帮助。
答案 2 :(得分:1)
I tried upgrading pip3 with what Jatmir was suggesting, but it did not work for me. Finally, I found another way to upgrade it in this post https://github.com/pypa/pip/issues/5255#issuecomment-381702613
curl https://bootstrap.pypa.io/get-pip.py | python3
答案 3 :(得分:1)
我的MacBook遇到了相同的问题,而我在下面遇到了同样的问题。(2018年9月)
使用
更新点pip3 install --upgrade pip
现在您应该可以安装beautifulsoup
pip3 install beautifulsoup4
如果失败,请尝试:
python3 -m pip install beautifulsoup4
答案 4 :(得分:0)