使用 GUI 自动化控制键盘和鼠标 - 安装

使用 GUI 自动化控制键盘和鼠标 - 安装

请问这里有什么问题吗?我尝试安装https://automatetheboringstuff.com/chapter18/

sudo pip3 install --user python3-xlib
Traceback (most recent call last):
  File "/usr/bin/pip3", line 9, in <module>
    from pip import main
ImportError: cannot import name 'main'
Error in sys.excepthook:
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/apport_python_hook.py", line 145, in apport_excepthook
    os.O_WRONLY | os.O_CREAT | os.O_EXCL, 0o640), 'wb') as f:
FileNotFoundError: [Errno 2] No such file or directory: '/var/crash/_usr_bin_pip3.0.crash'

Original exception was:
Traceback (most recent call last):
  File "/usr/bin/pip3", line 9, in <module>
    from pip import main
ImportError: cannot import name 'main'

使用 pip3 安装另一个程序会导致错误:

pip3 install python3-tk
Collecting python3-tk
  ERROR: Could not find a version that satisfies the requirement python3-tk (from versions: none)
ERROR: No matching distribution found for python3-tk

答案1

我可以看到python3-tk没有可用的包皮皮所以第二个错误是“正常”的。

对于第一个,您将sudo调用与--user标志混合在一起。我真的不知道 的内部原理pip,但尝试删除其中一个:要么sudo pip install要么pip install --user

相关内容