我正在尝试在python3.6 virtualenv上通过python get-pip.py命令安装pip,但出现错误:

(myvenv_python3) C:\Users\Kaleab\Downloads>python get-pip.py --trusted-host=pypi
.org
Collecting pip
  Downloading https://files.pythonhosted.org/packages/0f/74/ecd13431bcc456ed390b
44c8a6e917c1820365cbebcb6a8974d1cd045ab4/pip-10.0.1-py2.py3-none-any.whl (1.3MB)

Could not install packages due to an EnvironmentError: [WinError 31] A device at
tached to the system is not functioning
Consider using the `--user` option or check the permissions.

Exception ignored in: <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-
8'>
PermissionError: [WinError 31] A device attached to the system is not functionin
g

(myvenv_python3) C:\Users\Kaleab\Downloads>


您会推荐什么解决方案?我正在使用Windows 8.1计算机。

最佳答案

我在Windows 7上。我遇到了相同的错误。
我读了discussion here。如果您使用的是英语Windows,则似乎是由UTF-8支持引起的。

只需输入:

chcp 1252


然后再次运行您的点子。

关于python - PermissionError(WinError 31)连接到系统的设备不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50085366/

10-12 23:48