python3.7安装BeautifulSoup4时出现错误(主要是解决import bs4时出现Python2与Python3版本之间的问题)(No module named 'bs4')

说明: win10 64位系统 Python3.7.4

第一步:先下载最新版本的BeautifulSoup4

直接百度下载或者点击链接:link.

第二步:将下载的压缩包解压到Python安装路径

第三步:找到解压包路径

win+R输入‘ cmd ’,打开命令行窗口

第四步:

cd +空格+BeautifulSoup4解压包的路径
输入python setup.py build
输入python setup.py install

第五步

输入from bs4 import BeautifulSoup 时会出现以下错误:
代码片

You are trying to run the Python 2 version of Beautiful Soup under Python 3. 
This will not work.'<>'You need to convert the code, either by installing it 
(`python setup.py install`) or by running 2to3 (`2to3 -w bs4`)。

解决此类错误:

1、将BeautifulSoup文件夹中的bs4文件夹拷贝到Python安装目录下的Lib中。
2、将Python安装目录下的Tools/scripts/2to3.py文件也剪切到python安装目录下的Lib文件夹中。
3、win + 空格 + R 输入cmd 打开命令行窗口,cd +空格+Lib路径
回车
4、输入 ‘Python 空格 Lib路径 \ 2to3.py 空格 -w bs4’
5、再次输入from bs4 import BeautifulSoup检查是否有错误。

参考文档[https://cloud.tencent.com/developer/article/1487480]
参考文档[https://blog.csdn.net/elegance_zf/article/details/50593006]

如有不当欢迎指正,如有侵删。

你可能感兴趣的:(python3.7安装BeautifulSoup4时出现错误(主要是解决import bs4时出现Python2与Python3版本之间的问题)(No module named 'bs4'))