Changing the default environment in anaconda

By default, anaconda uses my environment root. However, I always use a different environment called py34manually activated. Can I change the default environment from rootanother?

Edit: I forgot to mention that I am working on Windows. On Unix systems, adding a line to .bashrcis, of course, a solution.

+4
source share
1 answer

You can add the following line at the end of your file ~/.bashrcor ~/.bash_profile:

source activate py34

, ​​Windows, ? - IDE, ​​ pycharm, python. py34.

+1

Source: https://habr.com/ru/post/1630046/


All Articles