我在cmd中获得pip install scrapy
,
它说Collecting scrapy
几秒后我得到以下错误:
Command "c:\python35\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\DELL\\AppData\\Local\\Temp\\pip-build-2nfj5t60\\Twisted\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\DELL\AppData\Local\Temp\pip-0bjk1w93-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\DELL\AppData\Local\Temp\pip-build-2nfj5t60\Twisted\
我无法收到错误。
答案 0 :(得分:1)
使用pip3
pip
python3
,因为您正在使用go1.8 linux/amd64
答案 1 :(得分:1)
使用此修复问题:
完成!
答案 2 :(得分:0)
根据scrapy文档,它不能在Windows机器上的Python 3.5上运行。尝试使用python 2.7(也许在virtualenv中),看看会发生什么。