Ubuntu 환경에 miniconda 설치

2024. 7. 27. 20:48Error Solve

반응형

1. Update os

sudo apt update

 

2. Upgrade os

sudo apt upgrade

 

3. Miniconda 다운로드

curl https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -o 
Miniconda3-latest-Linux-x86_64.sh

 

4. Miniconda 설치

sudo chmod +x Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh

 

5. 환경 변수 설정

nano ~/.bashrc

 

 

파일 끝에 다음과 같은 코드 추가

export PATH="$HOME/miniconda3/bin:$PATH"

 

※ ctrl + o : 파일 저장

※ ctrl + x : 파일 닫기

 

6. 변경 사항 적용

source ~/.bashrc

 

 

변경 사항 적용 확인

'Error Solve' 카테고리의 다른 글

Ubuntu에서 Docker 설치  (0) 2024.07.27
Ubuntu deb 파일 설치  (0) 2024.07.02
Docker desktop - Unexpected WSL error  (0) 2024.06.16