python 创建虚拟环境报错

错误代码

C:\Users\Administrator>mkvirtualenv -p D:\python3.6.6\python.exe weibo
Running virtualenv with interpreter D:\python3.6.6\python.exe
Using base prefix 'D:\\python3.6.6'
New python executable in D:\python3.6\projects_env\weibo\Scripts\python.exe
Installing setuptools, pip, wheel...
  Complete output from command D:\python3.6\project...o\Scripts\python.exe - setuptools pip wheel:
  Looking in links: d:\python3.6.6\lib\site-packages, d:\python3.6.6\lib\site-packages\virtualenv_support, D:\python3.6.6\lib\site-packages\virtualenv_support
Collecting setuptools
  Downloading https://files.pythonhosted.org/packages/14/43/4f6ccba67890ad39c3d5c736dd0de3b122bf252ee4e5b4ea3d900990d64d/setuptools-40.7.2-py2.py3-none-any.whl (574kB)
Exception:
Traceback (most recent call last):
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_vendor\urllib3\response.py", line 302, in _error_catcher
    yield
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_vendor\urllib3\response.py", line 384, in read
    data = self._fp.read(amt)
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_vendor\cachecontrol\filewrapper.py", line 60, in read
    data = self.__fp.read(amt)
  File "D:\python3.6.6\Lib\http\client.py", line 449, in read
    n = self.readinto(b)
  File "D:\python3.6.6\Lib\http\client.py", line 493, in readinto
    n = self.fp.readinto(b)
  File "D:\python3.6.6\Lib\socket.py", line 586, in readinto
    return self._sock.recv_into(b)
  File "D:\python3.6.6\Lib\ssl.py", line 1009, in recv_into
    return self.read(nbytes, buffer)
  File "D:\python3.6.6\Lib\ssl.py", line 871, in read
    return self._sslobj.read(len, buffer)
  File "D:\python3.6.6\Lib\ssl.py", line 631, in read
    v = self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\basecommand.py", line 228, in main
    status = self.run(options, args)
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\commands\install.py", line 291, in run
    resolver.resolve(requirement_set)
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\resolve.py", line 103, in resolve
    self._resolve_one(requirement_set, req)
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\resolve.py", line 257, in _resolve_one
    abstract_dist = self._get_abstract_dist_for(req_to_install)
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\resolve.py", line 210, in _get_abstract_dist_for
    self.require_hashes
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\operations\prepare.py", line 310, in prepare_linked_requirement
    progress_bar=self.progress_bar
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\download.py", line 837, in unpack_url
    progress_bar=progress_bar
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\download.py", line 674, in unpack_http_url
    progress_bar)
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\download.py", line 898, in _download_http_url
    _download_url(resp, link, content_file, hashes, progress_bar)
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\download.py", line 618, in _download_url
    hashes.check_against_chunks(downloaded_chunks)
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\utils\hashes.py", line 48, in check_against_chunks
    for chunk in chunks:
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\download.py", line 586, in written_chunks
    for chunk in chunks:
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\utils\ui.py", line 159, in iter
    for x in it:
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_internal\download.py", line 575, in resp_read
    decode_content=False):
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_vendor\urllib3\response.py", line 436, in stream
    data = self.read(amt=amt, decode_content=decode_content)
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_vendor\urllib3\response.py", line 401, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "D:\python3.6.6\Lib\contextlib.py", line 99, in __exit__
    self.gen.throw(type, value, traceback)
  File "d:\python3.6.6\lib\site-packages\virtualenv_support\pip-10.0.1-py2.py3-none-any.whl\pip\_vendor\urllib3\response.py", line 307, in _error_catcher
    raise ReadTimeoutError(self._pool, None, 'Read timed out.')
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
----------------------------------------
...Installing setuptools, pip, wheel...done.
Traceback (most recent call last):
  File "d:\python3.6.6\lib\site-packages\virtualenv.py", line 2343, in 
    main()
  File "d:\python3.6.6\lib\site-packages\virtualenv.py", line 712, in main
    symlink=options.symlink)
  File "d:\python3.6.6\lib\site-packages\virtualenv.py", line 947, in create_environment
    download=download,
  File "d:\python3.6.6\lib\site-packages\virtualenv.py", line 904, in install_wheel
    call_subprocess(cmd, show_stdout=False, extra_env=env, stdin=SCRIPT)
  File "d:\python3.6.6\lib\site-packages\virtualenv.py", line 796, in call_subprocess
    % (cmd_desc, proc.returncode))
OSError: Command D:\python3.6\project...o\Scripts\python.exe - setuptools pip wheel failed with error code 2

解决方法

python 创建虚拟环境报错_第1张图片

你可能感兴趣的:(喜欢你)