Skip to content

Instantly share code, notes, and snippets.

View inirudebwoy's full-sized avatar
🏗️
putting things on top of other things

Michael Klich inirudebwoy

🏗️
putting things on top of other things
View GitHub Profile
@flyte
flyte / .bashrc
Last active August 29, 2015 14:17
Add this to .bashrc to make functions to create and enable virtualenvs based on the current directory name.
mkenv() {
mkvirtualenv $(basename $(pwd))
}
wkon() {
workon $(basename $(pwd))
}
rmenv() {
rmvirtualenv $(basename $(pwd))