Instalando o PySide6 no seu ambiente virtual

This commit is contained in:
Luiz Otávio
2023-02-25 10:15:05 -03:00
parent 84dbc0f0cc
commit 41a778c57f

View File

@@ -24,3 +24,10 @@
# Licenças são tópicos complexos, portanto, se oriente sobre elas
# antes de usar qualquer software de terceiros.
# https://tldrlegal.com/license/gnu-lesser-general-public-license-v3-(lgpl-3)
import PySide6.QtCore
# Prints PySide6 version
print(PySide6.__version__) # type: ignore
# Prints the Qt version used to compile PySide6
print(PySide6.QtCore.__version__) # type: ignore