installation of pyside2
I think pip is magic tool. because, when we need some external python modules, we just command pip with the name of the module.
if you can see the version information, installation is done!
the way how to install pyside2 is also same to general way that python do.
pip install PySide2 # For the latest version on PyPi
after installation, you can test that pyside2 is installed well.
import PySide2.QtCore # Prints PySide2 version print(PySide2.__version__)
if you can see the version information, installation is done!
Comments
Post a Comment