"使用"pip install virtualenv"时无法找到'pip._vendor.distlib'的查找器"错误

Cor*_*haw 16 python pip virtualenv python-3.x

我试图在Windows 10下使用Python 3.6版本安装virtualenv.当我运行"pip install virtualenv"时,我收到此错误.我是Python的新手.

Collecting virtualenv
  Downloading virtualenv-15.0.3-py2.py3-none-any.whl (3.5MB)
    100% |????????????????????????????????| 3.5MB 256kB/s
Installing collected packages: virtualenv
Exception:
Traceback (most recent call last):
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\basecommand.py", line 215, in main
    status = self.run(options, args)
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\commands\install.py", line 317, in run
    prefix=options.prefix_path,
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\req\req_set.py", line 742, in install
    **kwargs
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\req\req_install.py", line 831, in install
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\req\req_install.py", line 1032, in move_wheel_files
    isolated=self.isolated,
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\wheel.py", line 493, in move_wheel_files
    maker.make_multiple(['%s = %s' % kv for kv in console.items()])
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\_vendor\distlib\scripts.py", line 383, in make_multiple
    filenames.extend(self.make(specification, options))
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\_vendor\distlib\scripts.py", line 372, in make
    self._make_script(entry, filenames, options=options)
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\_vendor\distlib\scripts.py", line 276, in _make_script
    self._write_script(scriptnames, shebang, script, filenames, ext)
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\_vendor\distlib\scripts.py", line 212, in _write_script
    launcher = self._get_launcher('t')
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\_vendor\distlib\scripts.py", line 351, in _get_launcher
    result = finder(distlib_package).find(name).bytes
  File "c:\users\corey shaw\appdata\local\programs\python\python36\lib\site-packages\pip\_vendor\distlib\resources.py", line 324, in finder
    raise DistlibException('Unable to locate finder for %r' % package)
pip._vendor.distlib.DistlibException: Unable to locate finder for 'pip._vendor.distlib'
Run Code Online (Sandbox Code Playgroud)

小智 21

我将在这里添加对我有用的解决方案,以防有人无法使用上述方法解决他们的问题。打开TerminalCommand promptAnaconda prompt并按照 3 个步骤操作:

步骤 1
输入python -m pip uninstall pip

第2步
python -m ensurepip

第 3 步
python -m pip install -U pip

使用 .pip 可以轻松检查 pip 版本pip --version。希望这对你有用:)

  • 为我工作。+1 提供简单的可编写脚本和可复制粘贴的命令,无需显式下载任何其他脚本/工具。 (3认同)

Sky*_*ard 20

  1. 卸载当前点子:

    python -m pip uninstall pip setuptools
    
    Run Code Online (Sandbox Code Playgroud)
  2. get-pip.pyhttps://bootstrap.pypa.io/get-pip.py下载

  3. 执行get-pip脚本:

    python get-pip.py
    
    Run Code Online (Sandbox Code Playgroud)


Tar*_*cco 14

这对我有用:

easy_install --upgrade pip

Windows 10,Python 3.6

  • 也为我工作 (2认同)
  • 很好的简单解决方案,但很高兴知道为什么它有效,我认为@jjisnow 发现了这一点。 (2认同)
  • 这仍然适用于 python 3.9,但会发出警告,表明它将在未来版本中弃用。 (2认同)

jji*_*now 6

尝试卸载pip并安装get-pip.py.它似乎是适用于Windows的3.6版本中的错误. https://github.com/pypa/pip/issues/3964

它也在这里报道. pip install jupyter:"无法找到'pip._vendor.distlib'的查找器"