본문 바로가기
CS/OS

[ubuntu] bash로 conda 설치하기

by judy@ 2023. 5. 3.

환경

Ubuntu 20.04.4 LTS

목표

miniconda 최신 버전 설치

 

설치 방법

0. 다운받을 설치 파일의 링크 찾기

링크는 conda docs에서 우클릭으로 복사함

1. shell에서 다음 명령어로 파일 다운로드

# 파일 다운로드 방법
$ wget [복사한 링크]

# 예시
$ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

2. 설치

명령어 아래 줄에서

  • 첫 번째 yes는 설치를 계속할 것인지
  • 두 번째 yes는 설치 공간을 제시하는 곳으로 해도 되는지
  • 세 번째 yes는 conda init을 지금 할건지

물어보는 것으로, 원하지 않는다면 no를 해도 된다.

# 설치
$ bash Miniconda3-latest-Linux-x86_64.sh
[enter]/yes/yes/yes

 

반응형