-
-
Save comtom/25ea08fd40aa0d00f9591338562c1257 to your computer and use it in GitHub Desktop.
A Simple bash alias for python virtualenv. :)
This file contains hidden or 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
# Python virtual env alias | |
alias activate='test -d ENV && source ./ENV/bin/activate || echo "No Virtualenv in the current folder"' | |
alias mkenv='test -d ENV && echo "Already exists" || virtualenv --system-site-packages ENV; activate' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment