我想在 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