3

I want to Install PySide 2 library But apparently this library is not found.

I tried this to install PySide2:

pip3 install PySide2

But after executing this command, I encountered the same problem:

ERROR: Could not find a version that satisfies the requirement PySide2 (from versions: none) ERROR: No matching distribution found for PySide2

I used https://pypi.org/project/PySide2/ to solve my problem but I did not reach any result.

1 Answers1

2

According to the documentation for versions of python 3.7+ you need to do the following to install the module:

pip install pyside6
Marcelo Paco
  • 2,732
  • 4
  • 9
  • 26