python 错误集合

  1. OSError: raw write() returned invalid length 94 (should have been between 0 and 47)

在vscode实验python程序时, 出现上面错误.

解决方法:

安装win_unicode_console:

pip install win_unicode_console

在代码中加入:

import win_unicode_console
win_unicode_console.enable()
  1. Could not install packages due to an EnvironmentError: raw write() returned invalid length

在vscode中, 出现这种错误;
打开cmd, 执行同样的命令即可

你可能感兴趣的:(python)