Skip to content

Deployments

Create Executable file

  • install pyinstaller using pip install pyinstaller
  • run command pyinstaller "script.py" to create executable file
  • you can use pyinstaller "script.py --onefile" to create single file executable
  • Refer : https://www.youtube.com/watch?v=wp2pNVUl3lc
  • Refer : https://pyinstaller.org/en/stable/index.html
  • Refer : https://www.youtube.com/watch?v=iIATJtruZBE

Crete Excecutable using psgCompiler

  • psg compiler let you compile your python script so user can use it without python installation
  • you can compile all files in single directory or create single file executable
  • install psgcompiler using pip install psgcompiler
  • run psgcompiler command in command prompt to start GUI