DEV Community

Discussion on: How do YOU manage python environments

Collapse
 
waylonwalker profile image
Waylon Walker

I'll start with me, I used to keep everything in one environment until it burnt me one too many times and did a 180. I now keep EVERY project separate. I do not install anything for one project into another project's environment. I also do a ton of exploration, at one point I had 70 conda environments installed on my machine.

conda create -n project python=3.8
source activate project
# ensure it activated
which pip
which python