python 프로그램 exe 로 말기
in Programming on Python
python 프로그램 exe 로 말기
pyinstaller 패키지를 사용하면 .py 로 작성한 프로그램을 exe프로그램으로 말수있다.
방법
- pyinstaller 설치
pip install pyinstaller
- pyinstaller로 exe로 말기
pyinstaller -F {.py path}
in Programming on Python
pyinstaller 패키지를 사용하면 .py 로 작성한 프로그램을 exe프로그램으로 말수있다.
pip install pyinstaller
pyinstaller -F {.py path}