Last active
March 4, 2024 08:57
-
-
Save vherolf/be419cf2e8e84869e866296b9cbcbe1e to your computer and use it in GitHub Desktop.
alias for virtual env
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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