DEV Community

Discussion on: Conda & Dealing with Conflicting Python(s) in your system

Collapse
 
moritzschaefer profile image
Moritz

Another (cleaner) possibility is to use conda without anaconda. That way you maintain your system's python environment completely and use conda as an environment manager with all the features you are used to.

pip install conda is all you need..

Collapse
 
bgalvao profile image
Bernardo

LOL so I could've skipped a whole hassle? Well good thing I learned about symlinks because of this haha. I always installed conda from the script, but I suppose I will start doing that.