使用scrapy创建项目时发生错误

1:这时我们需要安装cryptography
pip install -I cryptography
2:安装时会发生错误,需要更新pip版本,这里使用easy_install pip
3:再次安装cryptography,还是无法成功,错误如下:Consider using the --user option or check the permissions.我们需要使用权限,在install 后面加上–user
pip install --user -I cryptography

你可能感兴趣的:(使用scrapy创建项目时发生错误)