python安装pyautogui时遇到Pillow问题

Posted pu369com

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python安装pyautogui时遇到Pillow问题相关的知识,希望对你有一定的参考价值。

执行   pip install pyautogui

提示:

Could not find a version that satisfies the requirement Pillow>=6.2.1 (from pyscreeze>=0.1.21->pyautogui) (from versions: none)

参考:https://www.jianshu.com/p/3de67550cea6     ,首先从

https://www.lfd.uci.edu/~gohlke/pythonlibs/#pillow  下载了 Pillow‑7.1.1‑cp38‑cp38‑win_amd64.whl (我安装的python3.8  win10是64位)

执行:   

pip install e:\\downloads\\Pillow-7.1.1-cp38-cp38-win_amd64.whl

然后:

pip install pyautogui

成功。

为了输入中文,参考https://www.cnblogs.com/zwc--blog/p/11079986.html

还需要pyperclip 

然后,参考https://www.cnblogs.com/ffrs/p/11358308.html和https://blog.csdn.net/wenq_yang/article/details/82910427 做个测试 

另外,还有pywinauto  参考:https://www.cnblogs.com/baihuitestsoftware/articles/9317368.html

顺便写个小例子:打开计算器,然后运行脚本找计算器窗口,输入1+2=

import pyautogui,time

pyautogui.hotkey(\'win\', \'r\')
time.sleep(1)
pyautogui.press(\'shift\')#因为默认中文输入,所以切换输入法为英文状态
pyautogui.typewrite(\'calc.exe\')
pyautogui.press(\'enter\')
time.sleep(3)
pyautogui.press(\'1\')
pyautogui.press(\'+\')
pyautogui.press(\'2\')
pyautogui.press(\'=\')

 补充,考虑输入法的状态控制。后来添加了英文键盘,并设置热键以切换英文输入状态,参考https://jingyan.baidu.com/album/63acb44a7cfea461fdc17e5f.html?picindex=3

以上是关于python安装pyautogui时遇到Pillow问题的主要内容,如果未能解决你的问题,请参考以下文章

windows环境下用pip安装pyautogui遇到的几个问题

如何修复 Python 3 PyAutoGUI 屏幕截图错误? (苹果系统)

Python 安装pyautogui

macOS安装pyAutoGUI

python 安装 pyautogui 报错

python安装pyautogui