반응형
2024. 12. 11. 업데이트 된 내용입니다.

1. 최신버전 확인하기

Download Now | Anaconda
Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities.
www.anaconda.com
자신의 Linux에 맞는 설치파일 링크를 복사합니다.
2. 다운로드
[ec2-user@ ~]$ wget https://repo.anaconda.com/archive/Anaconda3-2024.10-1-Linux-x86_64.sh
--2024-12-10 17:20:12-- https://repo.anaconda.com/archive/Anaconda3-2024.10-1-Linux-x86_64.sh
Resolving repo.anaconda.com (repo.anaconda.com)... 104.16.191.158, 104.16.32.241, 2606:4700::6810:20f1, ...
Connecting to repo.anaconda.com (repo.anaconda.com)|104.16.191.158|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1102495056 (1.0G) [application/octet-stream]
Saving to: ‘Anaconda3-2024.10-1-Linux-x86_64.sh’
Anaconda3-2024.10-1-Linux-x86 100%[=================================================>] 1.03G 59.1MB/s in 17s
2024-12-10 17:20:30 (61.7 MB/s) - ‘Anaconda3-2024.10-1-Linux-x86_64.sh’ saved [1102495056/1102495056]
[ec2-user@ ~]$
3. 설치하기
[ec2-user@ ~]$ bash Anaconda3-2024.10-1-Linux-x86_64.sh
Welcome to Anaconda3 2024.10-1
In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
>>>
ANACONDA TERMS OF SERVICE
............
Version 4.0 | Last Modified: March 31, 2024 | ANACONDA TOS
Do you accept the license terms? [yes|no]
>>> yes
Anaconda3 will now be installed into this location:
/home/opc/anaconda3
- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
[/home/opc/anaconda3] >>>
PREFIX=/home/opc/anaconda3
Unpacking payload ...
............
Preparing transaction: done
Executing transaction: done
installation finished.
Do you wish to update your shell profile to automatically initialize conda?
This will activate conda on startup and change the command prompt when activated.
If you'd prefer that conda's base environment not be activated on startup,
run the following command when conda is activated:
conda config --set auto_activate_base false
You can undo this by running `conda init --reverse $SHELL`? [yes|no]
[no] >>> yes
no change /home/ec2-user/anaconda3/condabin/conda
no change /home/ec2-user/anaconda3/bin/conda
no change /home/ec2-user/anaconda3/bin/conda-env
no change /home/ec2-user/anaconda3/bin/activate
no change /home/ec2-user/anaconda3/bin/deactivate
no change /home/ec2-user/anaconda3/etc/profile.d/conda.sh
no change /home/ec2-user/anaconda3/etc/fish/conf.d/conda.fish
no change /home/ec2-user/anaconda3/shell/condabin/Conda.psm1
no change /home/ec2-user/anaconda3/shell/condabin/conda-hook.ps1
no change /home/ec2-user/anaconda3/lib/python3.12/site-packages/xontrib/conda.xsh
no change /home/ec2-user/anaconda3/etc/profile.d/conda.csh
modified /home/ec2-user/.bashrc
==> For changes to take effect, close and re-open your current shell. <==
Thank you for installing Anaconda3!
yes를 2번 입력하니 설치가 완료 되었습니다.
SSH를 다시 연결해 주세요..

4. 버전 확인

5. 업데이트
(base) [ec2-user@ ~]$ conda update -n base conda
conda 24.9.2 -> 24.11.1
(base) [ec2-user@ ~]$ conda update --all
반응형
'Developments > Python' 카테고리의 다른 글
Python 반올림(Round), 올림(Ceil), 내림(Floor), 버림(Trunc) (0) | 2024.10.23 |
---|---|
Anaconda 가상환경 설정 (0) | 2022.05.13 |