python3 安装 Beautifulsoup4结果发现版本不兼容的问题解决

注意我的python的windows安装目录为:D:\Python37-32


python进行爬虫时引用到BeautifuSoup开源的xml解析工具。以下为beautifulsoup4的windows的安装步骤:

        首先去网站下载beautifulsoup压缩包(beautifulsoup4-4.6.0.tar.gz)

                          https://www.crummy.com/software/BeautifulSoup/#Download

        将下载下来的压缩包解压后放入到python的安装目录(D:\Python37-32\beautifulsoup4-4.6.0)

        进入cmd,执行命令:

         

[html]  view plain  copy
  1. cd D:\Python37-32\beautifulsoup4-4.6.0  
  2. setup.py build  
  3. setup.py install  
       输入验证是否安装成功:

               在命令行输入:python

               然后输入:from bs4 import BeautifulSoup

      如果不出现任何提示信息表示安装成功。如果如下所示则安装失败,版本不兼容

      在python3中引用BeautifuSoup4时会出现版本不兼容的情况,具体看下面的错误代码

[python]  view plain  copy
  1. >>> from bs4 import BeautiulSoup  
  2. Traceback (most recent call last):  
  3.   File "<stdin>", line 1in <module>  
  4.   File "D:\Python37-32\beautifulsoup4-4.6.0\bs4\__init__.py", line 53  
  5.     '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`).'  
  6.                                                                                                        ^  
  7. SyntaxError: invalid syntax  

       将beautifulSoup解压目录中的bs4文件夹( D:\Python37-32\beautifulsoup4-4.6.0\bs4 )和 2to3.py( D:\Python37-32\Tools\scripts\ )复制到python的安装目录下的Lib( D:\Python37-32\Lib )文件夹下

        进入D:\Python37-32\Lib 目录,并执行 2to3.py bs4 -w 命令

      

[plain]  view plain  copy
  1. cd D:\Python37-32\Lib  
  2. 2to3.py bs4 -w  
       最后再输入python

      然后输入 from bs4 import BeautifulSoup

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值