I have a python env and code that runs on that env. I have code to setup this env using wget and such, but that's not OS independent really.
I wish to bundle this env and code into one (bundle?) and distribute, so the user doesn't has to set up the env before running the code.
Basically give the end user something (executable, tar, zip, .py), and after running/extracting that user should be able to run my main python script.
I looked into wheels, but I'm not sure if that solves the purpose.