在安装pyautogui包时,我得到了以下错误:
Collecting pyautogui
Using cached https://files.pythonhosted.org/packages/45/70/c5d340fadb06106135b7fe9677fc6d275f3cd7f7e6f896316c4cfe6c022c/PyAutoGUI-0.9.37.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\User\AppData\Local\Temp\pip-install-ogi36fze\pyautogui\setup.py", line 11, in <module>
long_description = fh.read()
File "C:\Users\User\AppData\Local\Programs\Python\Python36\lib\encodings\cp1250.py", line 23, in decode
return codecs.charmap_decode(input,self.errors,decoding_table)[0]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x88 in position 290: character maps to <undefined>这是"charmap“的一个错误。我该怎么办才能安装那个软件包?我在命令行中尝试了chcp 65001,但我认为没有那么简单。
我使用的是Python3.6 (x64)、Windows 10和PyCharm。
发布于 2018-07-21 18:50:26
这一问题已在PyAutoGUI 0.9.38中得到修正。
发布于 2018-07-21 14:00:08
这是PyAutoGUI版本0.9.37的一个问题。您必须安装0.9.36来解决这个问题。
https://stackoverflow.com/questions/51453945
复制相似问题