How to install Anaconda python for all users?

前端 未结 4 1806
心在旅途
心在旅途 2021-01-30 12:38

Anaconda python distribution is very convenient to deploy scientific computing env (SCE) and switch python versions as you want. By default, the installation will locate python

4条回答
  •  难免孤独
    2021-01-30 13:36

    Add the anaconda PATH to /etc/profile:

    for anaconda 2 :

    PATH=$PATH:$HOME/anaconda/bin
    

    for anaconda 3 :

    PATH=$PATH:$HOME/anaconda3/bin
    

    and then :

    source /etc/profile
    

提交回复
热议问题