安装bs4出现This error originates from a subprocess, and is likely not a problem with pip.
时间: 2023-11-12 22:59:08 浏览: 125
Microsoft Visual C++ 14.0 or greater is required
这个错误可能是由于安装bs4时需要依赖的库没有正确安装导致的。建议先尝试更新pip和setuptools,然后再重新安装bs4。具体操作可以参考以下步骤:
1. 更新pip和setuptools:
```
pip install --upgrade pip setuptools
```
2. 重新安装bs4:
```
pip install beautifulsoup4
```
如果还是出现相同的错误,可以尝试手动安装依赖库,例如lxml和html5lib:
```
pip install lxml html5lib
```
阅读全文