Issue
What is the recommended way of setting up PySide for development in Ubuntu?
sudo apt-get install python3-pyside
?sudo pip install pyside
?sudo easy_install pyside
?
Solution
All your options will work. It depends what you are trying to achieve with it and how portable it should be. What usually "just" works without problems is to create a virtualenv first:
apt-get -f install python-virtualenv
virtualenv ~/mypython2.7
With that you can simply use easy_install as recommended to install PySide in your local virtual environment:
~/mypython2.7/bin/easy_install PySide
If you want to build PySide, follow the extensive instructions on their github page
Answered By - romanofski
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.