Recommended way for installing PySide on Ubuntu

后端 未结 4 858
死守一世寂寞
死守一世寂寞 2021-02-19 08:15

What is the recommended way of setting up PySide for development in Ubuntu?

  1. sudo apt-get install python3-pyside?
  2. sudo pip install pysid
4条回答
  •  一生所求
    2021-02-19 08:57

    For development I would not install any development packages to system python - You should use virtualenv. Also if you want to save time, first create the distribution egg via "easy_install bdist_egg". Then you can install the egg to your virtualenv (or system python if you prefer) without recompiling everything. Complete instuctions on how to install dependencies, getting pyside source, building and installing are here

提交回复
热议问题