Skip to content

Instantly share code, notes, and snippets.

@pycoder2000
Last active June 25, 2024 03:30
Show Gist options
  • Save pycoder2000/89a525599c262a6c0cb2bc172582acef to your computer and use it in GitHub Desktop.
Save pycoder2000/89a525599c262a6c0cb2bc172582acef to your computer and use it in GitHub Desktop.
My Bash aliases file
alias mkvenv="virtualenv venv"
alias entervenv='source venv/bin/activate && where python3'
alias py="pip3 install -r requirements.txt"
alias pyfreeze="pip3 freeze > requirements.txt"
alias pyinit="mkvenv && venv >> .gitignore"
alias deletecrap="find . -name '.DS_Store' -type f -delete"
alias listapps="ls /Applications | pbcopy"
alias updateall="brew update && brew upgrade"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment