How to run Conda?

后端 未结 30 2170
予麋鹿
予麋鹿 2020-11-22 08:56

I installed Anaconda and can run Python, so I assume that I installed it correctly. Following this introductory documentation, I am trying to install Python v3.3, so I am co

30条回答
  •  面向向阳花
    2020-11-22 09:34

    Using the export PATH= strategy with conda activate will result into a warning message for conda>=4.4.

    The recommended way (see this release note, and this post) to do is to remove the export PATH=... line and add instead in your .bashrc (.bash_profile) the line:

    . ~/anaconda2/etc/profile.d/conda.sh
    

    Furthermore, if you want conda to be activated by default, add:

    conda activate
    

提交回复
热议问题