xpath 中 etree 的安装

1、下载依赖包 lxml-4.2.5-cp36-cp36m-win32.whl

==下载地址 ==
http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml
最好下载32bit ,下载64 bit 会报如下错:
lxml-4.2.5-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform.

2、安装命令

我保存在了这个路径下 D:\Program Files\lxml-4.2.5-cp36-cp36m-win32.whl
安装:

python3 -m pip install “D:\Program Files\lxml-4.2.5-cp36-cp36m-win32.whl”
成功提示:
Processing d:\program files\lxml-4.2.5-cp36-cp36m-win32.whl
Installing collected packages: lxml
Successfully installed lxml-4.2.5

安装成功后就可以用了,如果pycharm 中etree 报红,就重启一下pycharm 就可以了

你可能感兴趣的:(爬虫)