Unable to use PySide with Anaconda

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?

+4
source share
1 answer

You need to install it with conda:

conda install -c conda-forge pyside
+5
source

Source: https://habr.com/ru/post/1667079/


All Articles