Ubuntu focal fossa python3 错误 - 每个人都会遇到这个错误吗?

Ubuntu focal fossa python3 错误 - 每个人都会遇到这个错误吗?

每个人都会遇到这个错误吗?

  1. 安装 Ubuntu Focal Fossa。

  2. 然后安装python3-pip(此时Python3已经自动安装)

    Python 3.8.10 (default, Jun  2 2021, 10:49:15)
    [GCC 9.4.0] on linux
    Type "help", "copyright", "credits" or "license" for more information.
    
  3. 创建用户名并进行设置后:

    sudo python3
    >>> help()
    help> modules
    

现在在这个阶段您将遇到一条错误消息。

Error: Could not import kivy. Please install it using the instructions mentioned here `https://kivy.org/#download` .

重点是,如果不使用 sudo 则不会出现此错误。

python3
>>> help()
help> modules

答案1

您收到的错误消息Error: Could not import kivy. Please install it using the instructions mentioned here https://kivy.org/#download在相同情况下可在 Ubuntu 中重现。python3modules指令需要一段时间才能运行并生成大量结果,其中可能包含有关非 root 用户安装的文件的信息,因此出于安全原因,您不应在 root python3 shell 中运行此指令。该python3命令通常由普通用户运行,您不应以 root 身份运行 python3。

相关内容