Skip to content Skip to sidebar Skip to footer

Frustration Trying To Create GUI For Python Script

I'm extremely new to coding in general, and decided to start with Python. I've got some of the basics down, but I always feel like I learn better by just doing things. I'm using GU

Solution 1:

  1. download pyinstaller from http://www.pyinstaller.org/ (the zip version)
  2. extract it to C:\ , you should now have a path like C:\pyinstaller-2.1\<bunchafiles>
  3. go to your source folder where you normally run your program
  4. hold SHIFT + RIGHTCLICK select "open command window here"
  5. you should now be at a command prompt C:\path\to\code> _
  6. type: python C:\pyinstaller-2.1\pyinstaller.py --onefile --console Age.py
  7. run exe that is gernerated ...

it will only work with 2x I think ...


Post a Comment for "Frustration Trying To Create GUI For Python Script"