当前位置: 代码迷 >> 综合 >> 报错:You are trying to run the Python 2 version of Beautiful Soup under Python 3.
  详细解决方案

报错:You are trying to run the Python 2 version of Beautiful Soup under Python 3.

热度:66   发布时间:2023-11-26 03:34:26.0

编译代码后报错:

 解决方法:

在BeautifulSoup安装目录或者解压目录下,复制bs4的库文件夹到python的安装目录中的Lib文件夹中。

然后在Windows下输入cmd,进入你的Python目录,Lib\site-packages路径下,如:

 输入:

2to3 -w bs4

 或者,在python路径下输入:

python setup.py install

2to3 这个工具在python安装目录的Tools\scripts中。

导入其他库时,出现同样的情况,应该也可以这样解决。

  相关解决方案