关于scrapy安装运行的一些坑

简述操作系统基本情况

win10    64位 

anaconda -V    1.6.3

python -V    Python 3.6.2 :: Anaconda custom (64-bit)

scrapy安装

建议采用conda install scrapy,原因,可以将其他必要模块直接安装

scrapy运行出错!!!

可能会出现如下情景

from cryptography.hazmat.bindings._openssl import ffi, lib

ImportError: DLL load failed: 操作系统无法运行 %1。

此刻需要将C:\Windows\System32目录下的libeay32.dll和ssleay32.dll删除(但是为了防止其他不可预知的麻烦,建议将上述文件名进行更改,例如 libeay32--1.dll等)


希望可以帮到有需求的人。

你可能感兴趣的:(关于scrapy安装运行的一些坑)