Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't use PySide with Anaconda

I have just installed Anaconda for Python 3 and then installed PySide by

sudo apt-get install python3-pyside

Then I tried to use it throw Anaconda's version of python and typed import PySide but gave me this error ImportError: No module named 'PySide'

But when I try the normal Interpreter of Python it works fine, So how could I make it work with Anaconda?

like image 964
JavaBeg2016 Avatar asked Jan 17 '17 23:01

JavaBeg2016


1 Answers

You need to install it with conda:

conda install -c conda-forge pyside
like image 79
Mike Müller Avatar answered Nov 17 '22 10:11

Mike Müller