add alias to install python dependencies

This commit is contained in:
askiiart 2025-01-05 18:19:37 -06:00
parent 33b27e3c1f
commit 95e5342adb
Signed by untrusted user who does not match committer: askiiart
GPG key ID: 6A32977DAF31746A

View file

@ -58,3 +58,4 @@ else:
exit(subprocess.getstatusoutput(f'git remote set-url {remote} {new_url}')[0])\""
alias venv="if ! test -d ./.venv/; python3 -m venv .venv; end; source ./.venv/bin/activate.fish"
alias py-dep="pip install -r requirements.txt"