Merge pull request #2 from blakeridgway/blakeridgway/aliases

Update aliases.zsh
This commit is contained in:
Blake Ridgway 2023-06-07 18:24:12 -05:00 committed by GitHub
commit 39262bbcd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ alias gra="git remote add origin "
alias clonerepo="git fetch --all && git pull --all && git clone-branches"
# Python
alias initvenv='python3 -m venv vemv'
alias initvenv='python3 -m venv venv'
alias startvenv='source venv/bin/activate'
alias stopvenv='deactivate'
alias pyinstall='python3 -m pip install -r requirements.txt'