navis

우분투 Anaconda Navigator 설치 및 실행 본문

AI

우분투 Anaconda Navigator 설치 및 실행

menstua 2024. 5. 23. 15:03
728x90

1. Anaconda 설치 스크립트 다운로드

터미널을 열고 아래 명령어를 입력하여 Anaconda 설치 스크립트를 다운로드합니다:

wget https://repo.anaconda.com/archive/Anaconda3-2023.03-1-Linux-x86_64.sh

 


2. Anaconda 설치 스크립트 실행

다운로드된 스크립트를 실행하여 Anaconda를 설치합니다:

bash Anaconda3-2023.03-1-Linux-x86_64.sh

 


3. 라이센스 동의


설치 도중에 라이센스 동의 여부를 묻는 화면이 나타나면 yes를 입력합니다:

Do you accept the license terms? [yes|no]
[no] >>> yes

 


4. 설치 경로 확인

설치 경로를 확인하고 기본 경로로 진행하려면 enter를 입력합니다:

Anaconda3 will now be installed into this location:
/home/yourusername/anaconda3

- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
[/home/yourusername/anaconda3] >>>

 

5. conda 초기화

conda init 명령을 실행할 것인지 묻는 화면이 나오면 yes를 입력합니다:

Do you wish the installer to initialize Anaconda3
by running conda init? [yes|no]
[no] >>> yes

 

 

6. bashrc 업데이트

설치가 완료되면, bashrc 파일을 업데이트하여 conda 명령을 사용할 수 있게 합니다:

source ~/.bashrc

 

 

7. conda 버전 확인

conda가 올바르게 설치되었는지 확인합니다:

conda --version

 

8. Anaconda Navigator 설치

Anaconda Navigator를 설치합니다:

conda install anaconda-navigator

 

9. Anaconda Navigator 실행

마지막으로 Anaconda Navigator를 실행합니다:

anaconda-navigator



간단한 설정 (순서대로 진행)

wget https://repo.anaconda.com/archive/Anaconda3-2023.03-1-Linux-x86_64.sh
bash Anaconda3-2023.03-1-Linux-x86_64.sh
yes
enter
yes
source ~/.bashrc
conda --version
conda install anaconda-navigator
anaconda-navigator



'AI' 카테고리의 다른 글

Video Upscaling (StableSR)  (0) 2024.06.16
Object Separation (VITON-HD)  (0) 2024.05.27
Video Upscaling (CodeFormer)  (0) 2024.05.22
Object Separation (cloth-segmentation)  (0) 2024.05.22
Video Upscaling (VRT)  (0) 2024.05.22