01/06/2023 22:18 | Category: python

Tags: packaginggithub_actions

packaging python into executables across all os platforms

When working with packaging of Python projects for distribution it's pretty annoying. You have to deal with making executables multiple times because they need to be created on the host operating system that will be running it.

TODO

  • pyinstaller
  • requirements-dev.txt
  • requirements.txt
  • writeup of using pyinstaller
    • pyinstaller -F -n -y allows recreate, onefile, force clean overwrite
  • show examples of github actions on each