Skip to content

Instantly share code, notes, and snippets.

View progressify's full-sized avatar
🇮🇹

Antonio Porcelli progressify

🇮🇹
View GitHub Profile
@progressify
progressify / virtualenv_alias.sh
Last active April 13, 2020 11:50 — forked from haridas/virtualenv_alias.sh
A Simple bash alias for python virtualenv. :)
# Python virtual env alias
alias mkenv='test -d myvenv && echo "Already exists" || python3 -m virtualenv -p python3 myvenv; activatenv'
alias activatenv='test -d myvenv && source ./myvenv/bin/activate || echo "No Virtualenv in the current folder"'