I just installed Anaconda for Python 3 and then installed PySide
sudo apt-get install python3-pyside
Then I tried to use it to throw the python version of Anaconda and typed import PySide, but gave me this errorImportError: No module named 'PySide'
But when I try to use a regular Python interpreter, it works fine, so how can I get it to work with Anaconda?
source
share