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.

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

Popular posts from this blog

making menubar and menu on QML

let's start QML programming with PySide2

QSizePolicy Fixed example in pyside2