I am trying to convert a .py file to an exe. My file, hello.py, reads:
print \"Hello, World!\"
I am currently trying to use pyinstaller. Howeve
Using Python3:
Make sure PyInstaller is installed in Python 3.x: pip3 freeze
PyInstaller
pip3 freeze
PyInstaller==3.3.1
Then running the command:
/path/to/python3 -m PyInstaller your_script.py