Python VSCode setting - Qt for Python(PySide6) 기본 설정
2024. 1. 1. 18:07ㆍProgramming/Python
반응형
Qt for Python(PySide6) 이란?
Qt for Python(PySide6)은 Python 언어로 Qt GUI를 활용하게 해주는 모듈이다. (Qt를 Python언어로 사용하게 해주는 기술이다.)
공식문서 - https://doc.qt.io/qtforpython-6/
PySide6 설정
이전 기본 설정 참고 - 2023.11.26 - [Programming/Python] - Python VSCode Setting - 기본
pipenv install PySide6
PySide6 기본 예제
https://doc.qt.io/qtforpython-6/tutorials/basictutorial/widgets.html
import sys
from PySide6.QtWidgets import QApplication, QLabel
app = QApplication(sys.argv)
label = QLabel("Hello World!")
label.show()
app.exec()
실행
반응형
'Programming > Python' 카테고리의 다른 글
Python VSCode setting - Qml extension 설치 (0) | 2024.01.02 |
---|---|
Python VSCode setting - static type checker pyright pylance 정적분석 설정 (0) | 2023.12.01 |
Python VSCode setting - formatter black 설정 (0) | 2023.11.30 |
Python VSCode setting - Lint 설정 (0) | 2023.11.29 |
Python VSCode Setting - workspace (0) | 2023.11.28 |