So, I’m making an install.sh script to download script files from GitHub to the user’s system. I know downloading to the home directory (~/script_dir/) is typically frowned upon.
For context, this is a directory containing python files, README, requirements, etc. pip dependencies need to be installed before launch. The script would be executed through main.py.
Where would be a good place to download to that won’t clutter the user’s home directory?
Edit: The script is a CLI interface for yt-dlp to make it easier to use. So, it will download files to specified directories on the user’s system.
Edit 2: Appreciate the responses. I forgot to mention this script has a config file it uses for certain parameters, such as default download directory for each category. If a config file doesn’t exist it creates one in the script’s directory and dumps the default values from a default config file (YAML).
Some of you are mentioning this could be a PyPI package. Would I still be able to read/write my config files if I made this a PyPI package?
This is hard to say without knowing the use of the scripts. If it’s something to be used as normal CLI tools, probably some place that’s in the user’s path. If it’s something else, I would just have it download to the current working directory so that the user has the choice on where to put it.
Updated the post to include more info, but it is a CLI app which helps simplify yt-dlp commands. It doesn’t mess with any system files.
Yeah, I would create a directory in the current working directory and put it there.