본문 바로가기

학습/시스템

미니콘다 설치 및 초기 설정

미니콘다 소개 : 여러 python 개발 환경을 구현하기 위한 도구 입니다.

1. 사용자 OS에 맞는 버전을 다운로드 합니다.
 - 다운로드 : https://docs.anaconda.com/miniconda/

 

2. 설치 스크립트 실행 합니다.
 - 우분투 사용자여서 Linux로 설치합니다.
 - ./Miniconda3-latest-Linux-x86_64.sh

 

3. 환경 변수 재적용 합니다.
 - conda 명령을 못 찾길래 환경 변수를 수동으로 설정해야 하나 싶었는데, 아니라 재적용만 하면 되었습니다.
 - source ~/.bashrc

 

4. 실행 확인
 - conda list
 - conda env list
 

5. python 설치 

 - conda install python

 - conda install 패키지명

 

Miniconda — Anaconda documentation

These three commands quickly and quietly install the latest 64-bit version of the installer and then clean up after themselves. To install a different version or architecture of Miniconda for Windows, change the name of the .exe installer in the curl comma

docs.anaconda.com