Skip to content

Instantly share code, notes, and snippets.

@vherolf
Last active March 4, 2024 08:57
Show Gist options
  • Save vherolf/be419cf2e8e84869e866296b9cbcbe1e to your computer and use it in GitHub Desktop.
Save vherolf/be419cf2e8e84869e866296b9cbcbe1e to your computer and use it in GitHub Desktop.
alias for virtual env
# add to .zshrc or .bashrc
alias vnv='python3 -m venv venv --prompt . && source ./venv/bin/activate && pip install -U pip setuptools wheel pip-tootls &> /dev/null'
alias ae="source ./venv/bin/activate"
alias req="pip install -r requirements.txt"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment