将PyQt4安装为非root用户

时间:2013-08-31 22:10:54

标签: python pyqt install

机器:红帽企业Linux服务器版本6.3(圣地亚哥)

我正在尝试为PyQt4安装2.6.6。从sourceforge下载source

我会使用以下命令安装它。

python configure.py
make && make install

但我的问题是我没有root访问权限。如何以非root用户身份安装PyQt4?

1 个答案:

答案 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-vconfigure.py选项指定您具有写入权限的目标目录。