CentOS下安装PySide

版权声明: https://blog.csdn.net/jeremyjone/article/details/81355651

The CentOS repository does not contain PySide. You can add the EPEL repository to your OS then use: yum install -y python-pyside and it will be installed on your system.

In order to install the EPEL repository for 64bit systems, run the following as root:

  1. cd /tmp
  2. wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
  3. rpm -ivh epel-release-6-8.noarch.rpm

If you're using a 32bit system, use the following in step 2:

wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

如果遇到权限问题,请看上篇CentOS添加权限的文章。

文章源自:https://stackoverflow.com/questions/21935571/how-to-install-pyside-on-centos

猜你喜欢

转载自blog.csdn.net/jeremyjone/article/details/81355651