Python 安裝 PyAutoGUI 模組

本篇 ShengYu 將介紹如何在 Python 3 環境中安裝 PyAutoGUI 模組。

安裝 pyautogui

以下指紀錄 python 3 的安裝方法,python 2 即將不支援就算了吧。
遇到 ImportError: No module named ‘pyautogui’ 這錯誤訊息就是需要安裝 pyautogui,參考下列篇幅安裝吧!
官方文件:https://pyautogui.readthedocs.io/en/latest/
PyPI:https://pypi.org/project/PyAutoGUI/

Windows 安裝

以下安裝方式在 Windows 7, 10 下 Python 3.7.5 測試過

1
$ pip install pyautogui

Ubuntu 安裝

最新 pyautogui 的版本會要求至少 python3.6 以上, 因為我的 ubuntu 16.04 的 python 只有 3.5
在不升級python3的情況下,只好降版安裝指定的版本,
pip 預設會抓最新的版本,目前 pyautogui 最新的版本為 0.9.48(2019/10/10釋出)
我試到 pyautogui 0.9.44(2019/05/31釋出)才可以安裝,安裝方法如下:

1
$ sudo -H pip3 install pyautogui==0.9.44

如果遇到 ImportError: No module named Xlib.display 這錯誤訊息就是需要安裝 Xlib。

1
$ sudo apt-get install python3-xlib

Mac OSX 安裝

以下安裝方式在 macOS 10.13.4 下 Python 2.7.10 測試過,(Python 3 還沒試)

1
$ pip install pyautogui

參考
[1] Installation — PyAutoGUI 1.0.0 documentation
https://pyautogui.readthedocs.io/en/latest/install.html
[2] Python學習筆記——用GUI自動化控制鍵盤和鼠標 - 簡書
https://www.jianshu.com/p/41463c82ec8f
[3] module - Problems importing python-Xlib - Stack Overflow
https://stackoverflow.com/questions/5892297/problems-importing-python-xlib

其它相關文章推薦
Python PyAutoGUI 使用教學