실행 EXE 만들기
2024. 10. 25. 14:50ㆍpython
설치
pip install pyinstaller
컴파일
union.json은 같은디렉토리에 있어야 할 데이터입니다.
pyinstaller --onefile --add-data "union.json;." AYalram.py
dist폴더에 다음의 2개의 파일이 존재
AYalram.exe
union.json
'python' 카테고리의 다른 글
def copy(self) -> dict: 에서 -> dict: 뜻은 (0) | 2025.03.03 |
---|---|
Collecting mysqlclient==2.1.1 Using cached mysqlclient-2.1.1.tar.gz (88 kB) ERROR: Command errored out with exit status 1: (0) | 2023.09.18 |
python 상속에서 methed 정의만 사용 (0) | 2023.09.15 |
파이썬에서 @setter 사용법 (0) | 2023.09.15 |
pyqt6에서 폼간 데이터 전송방법 (0) | 2023.07.25 |