使用sublime时遇到问题。 我有几个由virtualenv创建的python的envs,现在我想用这些env中的一个运行我的项目,所以我使用下面的设置构建了一个新系统
{
"cmd": ["E:/virtualenv_python36/Scripts/python.exe", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
但使用此系统时出现异常
Traceback (most recent call last):
File "C:\Users\kuo\Desktop\test.py", line 5, in <module>
print(rps.read().decode())
UnicodeEncodeError: 'gbk' codec can't encode character '\xbb' in position 27237: illegal multibyte sequence
[Finished in 0.3s with exit code 1]
[cmd: ['E:/virtualenv_python36/Scripts/python.exe', '-u', 'C:\\Users\\kuo\\Desktop\\test.py']]
[dir: C:\Users\kuo\Desktop]
[path: C:\ProgramData\Oracle\Java\javapath;D:\Python36\Scripts\;D:\Python36\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Users\kuo\AppData\Local\Microsoft\WindowsApps;]
这是我的测试代码
import urllib.request
rps = urllib.request.urlopen('http://www.baidu.com')
print(rps.read().decode())
答案 0 :(得分:0)
看起来Python解释器试图加载print
调用的结果,这是一个中文网页。可能它会尝试向您显示输出。
我不确定页面的编码和文件/缓冲区的编码是否相同。我宁愿使用.decode()
的明确论据。
(另外,请考虑使用requests
。)