728x90
우분투에서 Anaconda를 설치하는 것은 생각보다 간단한데, initialization 할 때 귀찮은 문제가 종종 생기곤 한다.
우선 본인 환경에 맞는 anaconda를 설치한다.
https://docs.anaconda.com/anaconda/install/hashes/lin-3-64/
이 사이트에서 받을 수 있고, 나 같은 경우는 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
'Program > Ubuntu' 카테고리의 다른 글
pytorch DDP, conda 관련 에러 및 해결 사항 2 (0) | 2021.07.20 |
---|---|
pytorch DDP, conda 관련 에러 및 해결 사항 (0) | 2021.07.12 |
python 사용하여 mp4 파일 wav 변환 (0) | 2021.05.23 |
python 설치된 library 추출 및 이용 (0) | 2021.05.17 |
우분투 대용량 zip 파일 압축 풀기 오류 해결 관련 zipfile corrupt (0) | 2021.04.07 |