아나콘다를 다른 두 경로에 설치 후 원하는 가상환경을 쓰고 싶을 때 경로를 재설정 해야된다.
예를 들어 아래와 같이 /home/ 과 /raid/ 폴더에 anaconda를 각각 설치 했다고 가정하자.
현재는 base * 이 /home/[username] 으로 잡혀있지만 main 경로를 /raid/[username]/anaconda3 잡고 싶을 때
/home/user/anaconda3로 설정하고 싶을 시
export PATH="/home/user/anaconda3/bin:$PATH"
/raid/user/anaconda3로 설정하고 싶을 시
export PATH="/raid/user/anaconda3/bin:$PATH"
conda init
하면 원하는 위치에 anaconda 경로로 지정된다.