通过pip安装pyspider遇到了问题,报错“Command "python setup.py egg_info" failed with error code 10”
运行环境:
本人是win10系统,python版本3.6,32位
pip安装不详细阐述,有疑问自己百度或谷歌
http://lovesoo.org/windows-install-the-pip-method.html这是随手找的pip安装教程,可用
问题描述:
按照教程 我运行cmd.exe
执行 pipinstall pyspider
报错“Command "python setup.py egg_info" failed with error code 10”
解决方法:
通过谷歌,找到了解决渠道http://www.fatalerrors.org/a/command-python-setup.py-egg_info-failed-with-error-code-10.html
顺便推荐一下翻墙方法 https://github.com/Alvin9999/new-pac/wiki
第一步
执行 pip install wheel
第二步
http://www.lfd.uci.edu/~gohlke/pythonlibs/
在以上网站下载相应python包
找到PycURL
根据python环境选择下载
我的python版本为3.6,32位,所以下载倒数第二个pycurl-7.43.0-cp36-cp36m-win32.whl
然后放到d盘下
执行pip install d:\pycurl-7.43.0-cp36-cp36m-win32.whl
这个 d:\pycurl-7.43.0-cp36-cp36m-win32.whl就是我下载的文件名
接着执行pip install pyspider,解决
参考链接:
https://blog.csdn.net/qq_34244317/article/details/72805873
执行pip 命令出现Could not install packages due to an EnvironmentError错误的解决办法
因为环境的错误导致的原因,嗯.......搜了一下,只需把命令改为pip install --user pyspider就可以了
。
来源:oschina
链接:https://my.oschina.net/u/4346073/blog/3673074