PyInstaller 패키지는 python 스크립트를 운영체제에 따른 실행 파일로 만든다. 특히 PyQt 패키지를 사용하여 실행 파일로 만들 때 유용하다. 자세한 내용은 Pyinstaller로 PyQt5 코드를 exe로 만들기를 살펴보기 바란다.
$> pip install -U pyinstaller
$> pyinstaller guiTest.py -F -w --clean --noupx
$> pyinstaller guiTest.py -F -w -D --clean --noupx
macOS에서 Retina(HiDPI) 문제가 있으면 : info.plist 편집
<key>NSHighResolutionCapable</key>
<string>True</string>