'miniconda'에 해당되는 글 1건

  1. 2019.10.31 :: miniconda 설치
OS/Linux 2019. 10. 31. 22:27

miniconda 설치

환경

  • OS : CentOS 6,7

설치

Miniconda2 설치

yum install -y bzip2
wget https://repo.anaconda.com/miniconda/Miniconda2-latest-Linux-x86_64.sh
bash Miniconda2-latest-Linux-x86_64.sh << EOF

yes                # 약관동의
/path/to         # base 경로
yes
EOF

Miniconda3 설치

yum install -y bzip2
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh << EOF

yes
/path/to         # base 경로
yes
EOF

설치가 완료되면, ~/.bashrc에 conda를 초기화하는 코드가 추가됩니다.

.bashrc 파일을 다시 로드하거나, 다시 로그인을 하면 conda 명령을 사용할 수 있게됩니다.

conda update conda
conda -V

'OS > Linux' 카테고리의 다른 글

rpm 중복 패키지 삭제하기  (0) 2015.02.05
postfix 메일 큐 삭제  (0) 2015.01.14
vi - 전체 삭제  (0) 2014.12.12
iso 파일 마운트  (0) 2014.10.29
apt 패키지 관리자 사용하기  (0) 2014.10.28
posted by 구닥다리 엔지니어
: