간단한 코드( python )를 만들어 배포했을 시에 이를 실행파일( exe )로 변환하여 배포하면사용자 입장에서 편하게 사용가능 하기에 기록.Windows에서 설치[ pyinstaller ]pip install pyinstaller설치 완료 후 exe파일 만들기C:local > pyinstaller --onefile *.py //단순히 실행 파일만들 생성 할 때.C:local > pyinstaller --icon=*.icon --onfile *.py //실행 파일에 지정된 *.icon을 넣고 싶을 때.이외에 다양한 pyinstaller Option들이 있지만 현재는 위 2가지만 사용.