0

我从这里下载了 pyautogui,但它不会让我导入它或使用它允许新 python 文件的任何功能,即使我已经在该文件中运行了安装文件编写了

pip install pyautogui

import pyautogui

import module pyautogui

在 python IDLE 模块中。

我在 python 3.4.2 中执行此操作,只是返回错误,提示找不到它。

编辑:

Python 3.4.2 (v3.4.2:ab2c023a9432, Oct  6 2014, 22:15:05) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> pip install pyautogui
SyntaxError: invalid syntax
>>> 

“安装”一词以红色突出显示

4

1 回答 1

1

尝试使用 Python 安装 pyautogui 的代码:-

import os
os.system("pip install pyautogui")

然后尝试导入库

于 2020-11-20T10:55:22.620 回答