Ubuntu-20.04에 Anaconda 설치하기



  Environment
    Device : x86_x64
    OS : Ubuntu-20.04




※ ARM64에 Aanaconda 설치 불가

필요시 MiniForge를 사용할 것


1. Anaconda용 신규 계정 생성


$ sudo adduser conda
Adding user `conda' ...
Adding new group `conda' (1001) ...
Adding new user `conda' (1001) with group `conda' ...
Creating home directory `/home/conda' ...
Copying files from `/etc/skel' ...
New password:
Retype new password:
passwd: password updated successfully
Changing the user information for aa
Enter the new value, or press ENTER for the default
        Full Name []: conda
        Room Number []:
        Work Phone []:
        Home Phone []:
        Other []:
Is the information correct? [Y/n]
$ su conda

2. Anaconda 설치


1) Anaconda 다운로드
$ cd ~
$ wget https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh
$ ls
$ bash Anaconda3-2020.11-Linux-x86_64.sh
$ exit

※ ARM64은 MinoForge를 설치할 것

$ su conda
$ cd ~

Conda 업그레이드

$ conda update --all -y
2) Python2.7 환경 생성

신규 Conda 환경 생성

$ conda create -n conda27 anaconda python=2.7 -y

Conda 환경 접속

$ conda activate conda27

Conda 업그레이드

$ conda update --al -yl

Conda 패키지 설치

$ conda install paramiko pymysql beautifulsoup4 jupyterlab pandas -y

Conda 환경 접속 종료/p>

$ conda deactivate

3) Python3.7 환경 생성

신규 Conda 환경 생성

$ conda create -n conda37 anaconda python=3.7 -y

Conda 환경 접속

$ conda activate conda37

Conda 업그레이드

$ conda update --all -y

Conda 패키지 설치

$ conda install paramiko pymysql bs4 jupyterlab pandas tensorflow -y

Conda 환경 접속 종료

$ conda deactivate

4) Python3.8 환경 생성

신규 Conda 환경 생성

$ conda create -n conda38 anaconda python=3.8 -y

Conda 환경 접속

$ conda activate conda38

Conda 업그레이드

$ conda update --all -y

IConda 패키지 설치

$ conda install paramiko pymysql bs4 jupyterlab pandas tensorflow -y

Conda 환경 접속 종료

$ conda deactivate

※ Windows10용 Anaconda는 Python3.8에서 TensorFlow 설치 불가


Conda 기본 명령어


모든 Conda 환경 내역 확인

conda env list

신규 Conda 환경 생성

conda create -n yourenvironment yourpackages

Conda 환경 삭제

conda remove --name myenv

Conda 특정 패지키 업그레이드

conda update mypackage

Conda 모든 패키지 업그레이

conda update --all

해당 Conda 환경에 설치된 패키지 확인

conda list