Is it possible to add PyQt4/PySide packages on a Virtualenv sandbox?

后端 未结 13 1964
失恋的感觉
失恋的感觉 2020-11-28 20:16

I\'m using Virtualenv with profit on my development environment with web.py, simplejson and other web oriented packages.
I\'m going to develop

13条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-28 20:31

    Easiest way is to install this : vext.pyqt4

    This will add the single system PyQt4 package to your virtualenv.

    Ubuntu 16.04 usage:

    sudo apt install python3-pyqt4
    mkvirtualenv --python=python3.5 venv
    pip install --no-use-wheel vext.pyqt4
    

提交回复
热议问题