如何在 Linux 中以非 root 身份安装 PySide?

如何在 Linux 中以非 root 身份安装 PySide?

我想在 Linux (CentOs) 中编译一个 python 程序 (GetDistGUI.py),每当我输入:

chmod a+x GetDistGUI.py
python GetDistGUI.py

我收到以下错误,

from PySide.QtCore import QRegExp
ImportError: No module named PySide.QtCore

有什么建议如何解决吗?我想我需要安装 PySide 但我不能只是,

sudo apt-get install python3-pyside

因为我是非root。

答案1

要以用户身份安装 PySide,您应该使用pip以下--user选项:

pip install --user PySide2

相关内容