[Python] Pyinstaller 실행파일 만들기

주의사항 : 동일한 인터프리터 내에 pathlib 라이브러리가 있을 시 pyinstaller 실행 불가

 

가상 환경 생성

conda create -n 가상환경명 python==파이썬버전

 

가상 환경 활성화

conda activate 가상환경명

 

Pyinstaller 설치

pip install pyinstaller

 

Pyinstaller를 활용한 exe 설치 파일 만들기

pyinstaller Z:\999_sjbang\운영\versionCheck.py