最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
解决pycharm安装scrapy DLL load failed:找不到指定的程序的问题方法
时间:2022-06-25 01:57:14 编辑:袖梨 来源:一聚教程网
本篇文章小编给大家分享一下解决pycharm安装scrapy DLL load failed:找不到指定的程序的问题方法,文章介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
Note: 本解决方案在window10 + anaconda3 +pycharm2020.1.1 + scrapy安装亲测可用
问题:安装Scrapy后,执行scrapy出现:
from cryptography.hazmat.bindings._openssl import ffi ImportError: DLL load failed:找不到指定的程序
个人认为是Anaconda和Pycharm的部分Python库不能互相调用
即对于某些库,Anaconda存在相同的库,在pycharm安装时不会再安装某些Anaconda中已经存在的Python库,但是pycharm可用检测到系统已存在这些库,但又不能调用Anaconda的一些Python库
(不一定是哪种方法解决了问题)
方法4解决了问题
1. 尝试过的方法:
方法1:把anacond的三个路径都写到环境变量Path,系统本身就是这样,但依然出现相同的问题
方法2. 将anaconda promote 中的echo %PATH%的输入结果加到pycharm中的python console中,但依旧没有解决问题
方法3:依旧没有解决
(1)pip uninstall scrapy
(2) conda uninstall scrapy
(3) pip install --force --upgrade scrapy
(4)测试:scrapy
方法4:
(1)在pycharm的terminal中卸载scrapy
pip uninstall scrapy
(2)在anaconda prompt中卸载scrapy
conda uninstall scrapy
(3)在pycharm的terminal中安装scrapy
pip install scrapy
(4)如果此时还有些库出现问题,导致找不到程序,则在win10的命令行窗口卸载相应的库,再在pycharm的terminal中安装相应的库
可能存在idna版本过高的问题,
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the
following dependency conflicts.
requests 2.25.1 requires idna<3,>=2.5, but you have idna 3.2 which is incompatible.
但是在pycharm的终端中卸载时却提示文件不存在
则需要在win10的命令行窗口卸载idna
pip uninstall idna
然后在pycharm的terminal中安装idna
pip install idna==2.5
安装过程中,可能出现如下错误
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the
following dependency conflicts.
twisted 21.2.0 requires Automat>=0.8.0, but you have automat 0.7.0 which is incompatible.
另外一些其他库的操作方法相同
例如,存在cryptography却不可调用,是因为cryptography原始安装在anaconda的环境中的
因此,在win10的命令行窗口卸载cryptography
pip uninstall cryptography
然后,在pycharm的terminal中安装cryptography
pip install cryptography
执行scrapy提示service_identity模块不存在
在pycharm中安装时却提示已经存在
则,在win10的命令行窗口卸载service_identity
pip uninstall service_identity
然后,在pycharm的terminal中安装service_identity
pip install service_identity
再次执行scrapy,提示如下,则scrapy安装成功
相关文章
- 人们熟悉的寄居蟹属于以下哪种分类 神奇海洋11月21日答案 11-21
- 第五人格11.22共研服有什么更新 11月22日共研服更新内容介绍 11-21
- 原神恰斯卡怎么培养 11-21
- 无期迷途四星装束是谁 11-21
- 王者荣耀帝丹高中校服怎么获得 11-21
- 光遇姆明季后续版本怎么玩 11-21