无法在我的 windows 10 x64 机器上安装 scrapy
Not able to install scrapy in my windows 10 x64 machine
我在 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\
我无法得到错误。
根据 scrapy 文档,它不会 运行 在 Python 3.5 和 windows 机器上。尝试使用 python 2.7(也许在 virtualenv 中),看看会发生什么。
使用 pip3
而不是 pip
因为您使用的是 python3
刚刚解决了这个问题:
- 从这个link >https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted 下载与您的 OS 兼容的 twist 版本并将其安装到您的计算机或 virsualenv。
- 在命令行中:pip install path-to-your-twist-file***.whl
- 然后使用pip install scrapy
完成!
我在 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\
我无法得到错误。
根据 scrapy 文档,它不会 运行 在 Python 3.5 和 windows 机器上。尝试使用 python 2.7(也许在 virtualenv 中),看看会发生什么。
使用 pip3
而不是 pip
因为您使用的是 python3
刚刚解决了这个问题:
- 从这个link >https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted 下载与您的 OS 兼容的 twist 版本并将其安装到您的计算机或 virsualenv。
- 在命令行中:pip install path-to-your-twist-file***.whl
- 然后使用pip install scrapy
完成!