运行 pip 出现 DLL 加载失败错误

运行 pip 出现 DLL 加载失败错误

我在 Windows 10 上使用 python 3.6.8

我正在尝试使用 pip 安装一些东西,但是尝试运行 pip 却出现这个错误:

Traceback (most recent call last):
  File "c:\users\john\appdata\local\programs\python\python36\lib\runpy.py", line 193, in _run_module_as_main
    "__main__", mod_spec)
  File "c:\users\john\appdata\local\programs\python\python36\lib\runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "C:\Users\John\AppData\Local\Programs\Python\Python36\Scripts\pip.exe\__main__.py", line 5, in <module>
  File "c:\users\john\appdata\local\programs\python\python36\lib\site-packages\pip\_internal\__init__.py", line 19, in <module>
    from pip._vendor.urllib3.exceptions import DependencyWarning
  File "c:\users\john\appdata\local\programs\python\python36\lib\site-packages\pip\_vendor\urllib3\__init__.py", line 8, in <module>
    from .connectionpool import (
  File "c:\users\john\appdata\local\programs\python\python36\lib\site-packages\pip\_vendor\urllib3\connectionpool.py", line 7, in <module>
    from socket import error as SocketError, timeout as SocketTimeout
  File "c:\users\john\appdata\local\programs\python\python36\lib\socket.py", line 49, in <module>
    import _socket
ImportError: DLL load failed: The specified module could not be found.

我首先尝试重新安装 python,但没有成功。然后我尝试谷歌搜索,这让我尝试安装 visual studio c++ 2015 redistributable,但没有成功。我现在已经安装了每个版本的 redistributable,但仍然不起作用。我还尝试了另一个建议,将 msvcp71.dll 和 msvcr71.dll 添加到 sytem32 和 sytemWOW64。这也没有用。Python、Python Scripts 和 Python DLL 文件夹都在环境变量中。

我发现安装多个 python 可能会出现问题,但是当我运行时,where pythonwhere pip得到:

C:\Users\John\AppData\Local\Programs\Python\Python36\python.exe
C:\Users\John\AppData\Local\Programs\Python\Python36-32\python.exe

C:\Users\John\AppData\Local\Programs\Python\Python36\Scripts\pip.exe
C:\Users\John\AppData\Local\Programs\Python\Python36-32\Scripts\pip.exe

这只是因为我安装了 32 位和 64 位版本。

我也尝试过卸载常规 python 并安装 anaconda python,但还是出现了同样的错误。

所以我不知道现在该做什么,所以如果能得到一些帮助我将非常感激。谢谢。

相关内容