A lot of random scripts involving MP3s, FLAC, ALAC. It's a mismash of stuff.
It's best to make a virtual environment. This used Python 3.7.
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
within the directory
It's best to use a virtual environment.
source env/bin/activate
To get out of the virtual environemnt
deactivate
Adding a requirement
pip freeze > requirements.txt
git add requirements.txt
git commit
Try adding an alias to scripts that are in ./env/bin.
Example: ./env/bin/id3validate
pip install -e .
does an install
NOTE: make sure the *.egg-info stuff is not present in the folder.
One would have to re-install it I assume to update it.