Skip to content

Instantly share code, notes, and snippets.

@sambao21
Created April 16, 2012 20:01
Show Gist options
  • Save sambao21/2401117 to your computer and use it in GitHub Desktop.
Save sambao21/2401117 to your computer and use it in GitHub Desktop.
virtualenvwrapper postmkvirtualenv
#!/bin/zsh
# This hook is run after a new virtualenv is activated.
echo "Do you want to install ipython & bpython?"
select yn in "Yes" "No"; do
case $yn in
Yes )
pip install ipython bpython;
easy_install readline;
break;;
No )
break;;
esac
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment