분명히 pip freeze 했을때 모듈이 설치되었는데 실행이 안된다면
python -m PyInstaller myscript.py
이런식으로 실행해봐라
python -m 모듈명 ~~
한참 고생했다.
pyQt - GUI 모듈
exe 파일 만들기
pyinstaller.exe --onefile --windowed --icon=app.ico app.py
pyinstaller --onefile --windowed --icon=icon.ico changeName.py
python -m PyInstaller --onefile --windowed --icon=.\icon.ico .\changeName.py