DEV Community

Discussion on: How do YOU manage python environments

Collapse
 
waylonwalker profile image
Waylon Walker

I like the idea of the auto-activation, but can see where it could cause some frustrations as well. I made a fuzzy condo environment activator with fzf to make it a bit less verbose.

a () {
     source activate "$(conda info --envs | fzf | awk '{print $1}')"
     }