机器:红帽企业Linux服务器版本6.3(圣地亚哥)
我正在尝试为PyQt4
安装2.6.6
。从sourceforge下载source。
我会使用以下命令安装它。
python configure.py
make && make install
但我的问题是我没有root访问权限。如何以非root用户身份安装PyQt4?
答案 0 :(得分:1)
如果您输入python configure.py --help
,您将获得以下几种选择:
...
Installation:
-b DIR, --bindir=DIR
where pyuic4, pyrcc4 and pylupdate4 will be installed
[default: /usr/bin]
-d DIR, --destdir=DIR
where the PyQt4 Python package will be installed
[default: /usr/lib/python2.7/dist-packages]
-p DIR, --plugin-destdir=DIR
where any plugins will be installed [default:
QTDIR/plugins]
--no-sip-files disable the installation of the .sip files [default:
enabled]
-v DIR, --sipdir=DIR
where the PyQt4 .sip files will be installed [default:
/usr/share/sip]
...
运行-b
时,请使用-d
,-p
,-v
和configure.py
选项指定您具有写入权限的目标目录。