安裝 要安裝PyAutoGUI,請pyautogui通過運行(在Windows上)或(在macOS和Linux上)從PyPI 安裝軟件包。(在macOS和Linux上,指的是Python 2的pip工具。)pip install pyautoguipip3 install pyautoguipip 特定于操作系統(tǒng)的說明如下。 注意:自2019年10月起,Pillow模塊不支持Python 3.8。PyAutoGUI當前依賴于此模塊的屏幕截圖功能。 窗口在Windows上,您可以使用該py.exe程序運行最新版本的Python: py -m pip install pyautogui
如果您安裝了Python的多個版本,則可以選擇帶有命令行參數(shù)的py。例如,對于Python 3.8,運行: py -3.8 -m pip install pyautogui
(這與運行相同。)pip install pyautogui
MACOS 在macOS和Linux上,您需要運行python3: python3 -m pip install pyautogui
如果您正在運行El Capitan并在安裝pyobjc時遇到問題,請嘗試: MACOSX_DEPLOYMENT_TARGET=10.11 pip install pyobjc
Linux的在macOS和Linux上,您需要運行python3: python3 -m pip install pyautogui
在Linux上,此外,您需要安裝scrot應用程序以及Tkinter: sudo apt-get install scrot sudo apt-get install python3-tk sudo apt-get install python3-dev
PyAutoGUI安裝它依賴的模塊,包括PyTweening,PyScreeze,PyGetWindow,PymsgBox和MouseInfo。
|