개발/Python
Linux Anaconda Download, Install, Update
강서버
2023. 4. 18. 17:54
728x90
반응형
1. Anaconda archive download
1.1 Browser download
- All
https://repo.anaconda.com/archive/
- Linux :
https://repo.anaconda.com/archive/Anaconda3-2023.03-Linux-x86_64.sh
- Windows :
https://repo.anaconda.com/archive/Anaconda3-2023.03-Windows-x86_64.exe
1.2 Terminal download
$ wget https://repo.anaconda.com/archive/Anaconda3-2023.03-Linux-x86_64.sh
2. Conda install
$ cd /conda_download_dir
$ chmod u+x Anaconda3-2023.03-Linux-x86_64.sh
$ ./Anaconda3-2023.03-Linux-x86_64.sh
3. Conda package update
$ cd /conda_install_dir
$ cd bin
$ conda update -n base conda
4. All python package update
$ cd /conda_install_dir
$ cd bin
$ conda update --all
반응형