我们不能将'pyautogui'导入到google colaboratory中吗?

问题描述 投票:0回答:1

我是 python 新手,在导入 google colaboratory 上的一些模块(包括 gui)时遇到一些问题。

发出命令后: !pip 安装 pyautogui, colab 安装它没有任何错误,但是当我要求它导入该模块时,它给出了错误:

KeyError                                  Traceback (most recent call last)
<ipython-input-3-89465ec01d66> in <cell line: 3>()
      1 # Screen Shot Taker
      2 get_ipython().system('pip install pyautogui')
----> 3 import pyautogui

2 frames
/usr/lib/python3.10/os.py in __getitem__(self, key)
    678         except KeyError:
    679             # raise KeyError with the original key value
--> 680             raise KeyError(key) from None
    681         return self.decodevalue(value)
    682 

KeyError: 'DISPLAY'

浏览了一些网站后,我发现colab无法导入具有gui的模块,但我不确定这是否正确。

那么,有没有其他方法可以将pyautogui导入到colab中,或者由于某种原因无法导入?

如果无法导入,还有其他在线IDE可以吗? 非常重要的一点是我正在 chromebook 上工作,而不是笔记本电脑或电脑

python user-interface import pyautogui chromebook
1个回答
0
投票

但是,Google Colab 是在 Google Cloud 中的机器实例上运行的。 Python 无法访问您的键盘/显示器。您仅通过浏览器与 Colab 交互。

https://stackoverflow.com/a/53926941/18661812

© www.soinside.com 2019 - 2024. All rights reserved.