Automatically Activate Virtualenv
I find myself typing source venv/bin/activate
a lot when switching between Python projects. I added this function to my .bash_profile. It checks if there’s a directory named venv (or virtualenv or whatever you use). If there is, it activates the virtual environment automagically.
1 2 3 4 5 6 |
|