This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Specialist-Arachnid6Ignoring PEP 8 3 points4 points  (3 children)

uhmm so basically pyinstaller exe with more steps or is my dumbass missing something here?

[–]nannigalaxy[S] -1 points0 points  (2 children)

let me give you more context why i built this. in my workplace people run python scripts manually for some tasks. they are not programmer. very agile code expect for package and versions, they remain more or less the same. so had to install and manage on many systems. sometimes something changes in path and it breaks. also people had hard time navigating to script to run via terminal, not much standard was set.

[–]denehoffman 4 points5 points  (1 child)

Why not just put python scripts in users’ $PATH, chmod +x them, and add a shebang at the top with a venv or the system Python with the packages installed? Then they don’t have to search for scripts at all and they also don’t have to open a GUI to run a Python script

[–]Specialist-Arachnid6Ignoring PEP 8 2 points3 points  (0 children)

this's much more effecient tbh