你再掐我试试 发表于 2020-5-9 19:27:35

有关request_html库的安装问题

我的电脑里面同时安装了python37的解释器以及anaconda。使用pip进行了requests_html库,但是使用python37的解释器,报错说没有找到这个库。
经过我的一番查找,我知道原来pip安装,直接把库安装到了anaconda里。
我现在希望能够在python37里面进行requests库的安装和使用,同时保留anaconda,请教各位应该怎么做?

永恒的蓝色梦想 发表于 2020-5-9 19:30:07

用 python3

你再掐我试试 发表于 2020-5-9 19:31:35

永恒的蓝色梦想 发表于 2020-5-9 19:30
用 python3

你好,可以说的再详细一点吗?我用pip3install   requests_html安装,还是在anaconda里面。

qiuyouzhi 发表于 2020-5-9 19:31:51

py -3 -m pip install requests_html

永恒的蓝色梦想 发表于 2020-5-9 19:32:46

你再掐我试试 发表于 2020-5-9 19:31
你好,可以说的再详细一点吗?我用pip3install   requests_html安装,还是在anaconda里面。

https://www.jianshu.com/p/f6ecdff50ea3
本来那个帖子只是个占楼的{:10_245:}

qiuyouzhi 发表于 2020-5-9 19:38:53

你再掐我试试 发表于 2020-5-9 19:31
你好,可以说的再详细一点吗?我用pip3install   requests_html安装,还是在anaconda里面。

直接命令行安装

你再掐我试试 发表于 2020-5-9 19:48:06

永恒的蓝色梦想 发表于 2020-5-9 19:32
https://www.jianshu.com/p/f6ecdff50ea3
本来那个帖子只是个占楼的

哈哈哈,我按照你的方法试了。方法和楼上的大哥说的一样。安装的路径对了,但是报错说找不到相应的版本。
ERROR: Could not find a version that satisfies the requirement lxml>=2.1 (from pyquery->requests_html) (from versions: none)
ERROR: No matching distribution found for lxml>=2.1 (from pyquery->requests_html)

你再掐我试试 发表于 2020-5-9 19:48:42

qiuyouzhi 发表于 2020-5-9 19:31


我按照你的方法试了。安装的路径对了,但是报错说找不到相应的版本。
ERROR: Could not find a version that satisfies the requirement lxml>=2.1 (from pyquery->requests_html) (from versions: none)
ERROR: No matching distribution found for lxml>=2.1 (from pyquery->requests_html)

永恒的蓝色梦想 发表于 2020-5-9 19:50:31

你再掐我试试 发表于 2020-5-9 19:48
哈哈哈,我按照你的方法试了。方法和楼上的大哥说的一样。安装的路径对了,但是报错说找不到相应的版本。 ...

py -3 -m pip install --index https://mirrors.ustc.edu.cn/pypi/web/simple/requests_html

你再掐我试试 发表于 2020-5-9 20:16:37

永恒的蓝色梦想 发表于 2020-5-9 19:50


感谢!只是大佬你给的镜像里面还是找不到匹配的版本,最后用了清华的镜像,顺利解决了。
页: [1]
查看完整版本: 有关request_html库的安装问题