简体   繁体   English

安装virtualenv Windows时出错

[英]Error installing virtualenv Windows

I am installing virtualenv using the following command 我正在使用以下命令安装virtualenv

pip install virtualenv

and this is what is got: 这是得到的:

C:\Users\X>pip install virtualenv
Collecting virtualenv
  Using cached virtualenv-15.0.3-py2.py3-none-any.whl
Installing collected packages: virtualenv
Exception:
Traceback (most recent call last):
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\basecommand.py", line 215, in main
    status = self.run(options, args)
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\commands\install.py", line 317, in run
    prefix=options.prefix_path,
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\req\req_set.py", line 742, in install
    **kwargs
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\req\req_install.py", line 831, in install
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\req\req_install.py", line 1032, in move_wheel_files
    isolated=self.isolated,
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\wheel.py", line 493, in move_wheel_files
    maker.make_multiple(['%s = %s' % kv for kv in console.items()])
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\_vendor\distlib\scripts.py", line 383, in make_multiple
    filenames.extend(self.make(specification, options))
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\_vendor\distlib\scripts.py", line 372, in make
    self._make_script(entry, filenames, options=options)
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\_vendor\distlib\scripts.py", line 276, in _make_script
    self._write_script(scriptnames, shebang, script, filenames, ext)
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\_vendor\distlib\scripts.py", line 212, in _write_script
    launcher = self._get_launcher('t')
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\_vendor\distlib\scripts.py", line 351, in _get_launcher
    result = finder(distlib_package).find(name).bytes
  File "c:\users\x\appdata\local\programs\python\python36-32\lib\site-packages\p
ip\_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.d
istlib'

BTW i am using python 3.6. 顺便说一句,我正在使用python 3.6。 What is the problem ? 问题是什么 ?

This seems to be a bug in pip under windows. 这似乎是Windows下pip的错误。

The following steps helped me solve the problem: 1. uninstall pip: 以下步骤可帮助我解决问题:1.卸载pip:

python -m pip uninstall pip setuptools
  1. reinstall pip with [this script][1]. 使用[此脚本] [1]重新安装pip。
  2. run get-pip.py from within your venv 从您的venv中运行get-pip.py

This should solve it. 这应该解决。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM