无法在我的Windows 10 x64机器上安装scrapy

时间:2017-02-18 20:15:01

标签: python windows scrapy pypi

我在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\

我无法收到错误。

3 个答案:

答案 0 :(得分:1)

使用pip3 pip python3,因为您正在使用go1.8 linux/amd64

答案 1 :(得分:1)

使用此修复问题:

  1. 从此链接> https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted下载与您的操作系统兼容的扭曲版本并将其安装到您的计算机或virsualenv。
  2. 在命令行中: pip install path-to-your-twist-file ***。whl
  3. 然后使用 pip install scrapy
  4. 完成!

答案 2 :(得分:0)

根据scrapy文档,它不能在Windows机器上的Python 3.5上运行。尝试使用python 2.7(也许在virtualenv中),看看会发生什么。

https://doc.scrapy.org/en/latest/intro/install.html