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
First install Pyinstaller in your python2.7 version if not installed previously py -2 -m pip install pyinstaller
py -2 -m pip install pyinstaller
and then go to your folder and
py -2 -m pyinstaller -F filename.py