Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

python - Cannot install pip install pyautogui, error code 1

pip install <package> command is working for me, I tried installing selenium package it is working in my setup but when I try to install pyautogui, it does not work. Screenshots below. What could be wrong here:

WORKS: enter image description here

DOES NOT WORK, Error:

←[31mCommand "python setup.py egg_info" failed with error code 1 in c:usershomepcappdatalocalemppip-build-q631supyscreeze←[0m

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The error message is just as it reads. You need the Pillow port of the PIL library as a dependency:

pip install Pillow # a popular port of the Python Imaging Library, which is needed here

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...