By default, anaconda is using my root
environment. However, I'm always using another environment called py34
that I activate manually. Is it possible to change the default environment from root
to another one?
Edit: I forgot to mention that I'm working on Windows. On Unix systems adding a line to .bashrc
is a solution of course.
You could add the following line to the end of your
~/.bashrc
or~/.bash_profile
file:Unfortunately, I'm not familiar with developing on Windows, but this might help? Another possibility is to use an IDE such as pycharm, which I can really recommend for developing python. There, you can change your project settings to your
py34
environment.