728x90

우분투에서 Anaconda를 설치하는 것은 생각보다 간단한데, initialization 할 때 귀찮은 문제가 종종 생기곤 한다.

 

우선 본인 환경에 맞는 anaconda를 설치한다.

 

https://docs.anaconda.com/anaconda/install/hashes/lin-3-64/

 

Anaconda with Python 3 on 64-bit Linux — Anaconda documentation

 

docs.anaconda.com

 

이 사이트에서 받을 수 있고, 나 같은 경우는 Anaconda3-2021.05-Linux-x86_64.sh 를 사용한다. (2021, 06, 25 기준)

 

다운받아서 우분투로 옮기고,

 

sh ./Anaconda3-2021.05-Linux-x86_64.sh 

 

그 다음 yes

 

enter, 등등..

 

설치가 완료된 뒤, conda init 을 해줘야하는데, 이 때 command not find가 뜬다.

 

이때, 

 

vi ~/.bashrc

export PATH="/your_workspace/anaconda3/bin:$PATH"

(예시: export PATH="/workspace/kaen2891/anaconda3/bin:$PATH")

source ~/.bashrc

 

conda init

 

으로 해결할 수 있다.

 

 

728x90

+ Recent posts