python项目报错:bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requests

作者:AJiangJiang.Jiang 时间:2022-07-17 05:39:02 

前言

最近突然对爬虫有了一点兴趣,所以打算学一下爬虫,但是在安装使用一些库时,遇到了一些不小的麻烦,对于我来说,最麻烦的就是配置环境了,老是有一大堆莫名其妙的报错。。。

今天记录一下,我如何在windows上安装BeautifulSoup库以及对应的lxml类库。 bs4本身有自己默认的解析器,但是这个默认的解析库实在太慢了,所以使用lxml类库可以大幅度提升解析速度

一、我的开发环境

  • python3.6

  • windows

  • pycharm 2021.3(Community Edition)

二、安装步骤

1.安装BeautifulSoup库

直接在命令行输入以下代码安 * s4。

代码如下:

pip3 install beautifulsoup4

2.安装lxml类库

使用pip直接安装lxml会出错。所以我选择在官网上下载对应python版本的lxml

python项目报错:bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requests

将下载的文件放在cmd目录下,通过pip先安装wheel

python项目报错:bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requests

代码如下:

pip install wheel

然后才能安装lxml对应的.whl文件

安装完成后,进入python,import lxml 没有报错就成功啦

3.测试安装结果

进入python交互环境,引用bs4和lxml类库,如果安装成功,则不报错:

import bs4
import lxml

python项目报错:bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requests

三、 在pycharm中引入库

如果安装成功之后,运行python项目,还是报错:bs4.FeatureNotFound: Couldn’t find a tree builder with the features you requests

这时候需要在pycharm中引入相关的包。file->setting->python interpreter:

python项目报错:bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requests

如果没有引入lxml,双击wheel,搜索lxml,安装,安装好后,就能查看到lxml包,运行项目,成功:

python项目报错:bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requests

python项目报错:bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requests

python项目报错:bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requests

总结 

来源:https://blog.csdn.net/AJiangxian/article/details/123329355

标签:python,报错,bs4.featurenotfound
0
投稿

猜你喜欢

  • MySQL Basis 常用命令

    2010-11-11 11:59:00
  • Golang切片和数组拷贝详解(浅拷贝和深拷贝)

    2024-04-26 17:20:38
  • Python实现两种多分类混淆矩阵

    2022-03-01 13:58:32
  • python中itertools模块zip_longest函数详解

    2023-01-02 09:09:35
  • Python中使用zip函数的七重境界解析

    2021-04-01 19:38:43
  • python 实现音频叠加的示例

    2022-10-02 21:53:38
  • 详解Python计算机视觉 图像扭曲(仿射扭曲)

    2021-06-13 15:57:43
  • PHP脚本监控Nginx 502错误并自动重启php-fpm

    2023-09-26 00:11:45
  • 实例讲解Python中函数的调用与定义

    2022-10-25 02:47:55
  • centos6.7 安装python2.7、pip2.7、easy_install-2.7的方法

    2021-02-06 09:20:35
  • Windows平台Python编程必会模块之pywin32介绍

    2023-11-05 10:45:35
  • JS脚本实现网页自动秒杀点击

    2024-04-16 09:36:09
  • Python中优化NumPy包使用性能的教程

    2021-03-27 21:08:43
  • SQL Server 存储过程解析

    2024-01-21 22:41:01
  • 使用SQL语句 INNER JOIN 联接表

    2008-04-27 20:31:00
  • MySQL数据类型全解析

    2024-01-27 07:44:58
  • PHP PDOStatement::errorCode讲解

    2023-06-11 12:40:23
  • 标准的、语义的、Unobtrusive的页签tab切换

    2007-11-03 13:58:00
  • 关于Tensorflow中的tf.train.batch函数的使用

    2023-11-04 19:49:54
  • Python的Flask框架使用Redis做数据缓存的配置方法

    2024-01-21 18:37:47
  • asp之家 网络编程 m.aspxhome.com