I'm installing python package pyautogui through pip, like below:
pip install pyautogui
However, it shows the error:
ERROR: Complete output from command python setup.py egg_info:
ERROR: Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\Winnie\AppData\Local\Temp\pip-install-dxvr5jhi\pygetwindow\setup.py", line 11, in <module>
long_description = fh.read()
UnicodeDecodeError: 'cp950' codec can't decode byte 0xe2 in position 903: illegal multibyte sequence
----------------------------------------
ERROR: Command "python setup.py egg_info" failed with error code 1 in C:\Users\Winnie\AppData\Local\Temp\pip-install-dxvr5jhi\pygetwindow\
I've search my problem on the stackoverflow, and I did the same way as "pip install unroll": "python setup.py egg_info" failed with error code 1
When I tried easy_install -U setuptools
It shows:
error: [WinError 5] Permission denied: 'c:\\users\\winnie\\appdata\\local\\programs\\python\\python37-32\\Scripts\\easy_install.exe'
Here is what I'm using:
- OS: Windows 10
- python: 3.7.3
- pip: 19.1
What's wrong with my computer? Can anyone help me?
Thank you very much