#3 of AI and Deep Learning - Anaconda w/ CMD

Anaconda

명령어 at CMD

  • conda --version
    • 버전 확인
  • conda list
    • 설치된 패키지 및 라이브러리 확인
  • conda info --envs
    • 생성된 가상환경 목록
  • conda create --name test python=3.7.5
    • 가상환경 생성
    • 가상환경 활성화
      • activate
      • deactivate
  • 패키지 설치
    • pip install 패키지명
  • 아나콘다 네비게이터
    • GUI 기반 아나콘다 기능 컨트롤 및 부가 프로그램 설치
    • conda install anaconda-navigator

pycharm IDE 활용 시

  • cmd 창에서 생성한 conda env 적용 가능
    • 프로젝트 생성
    • settings (alt + ctrl + s)
    • project interpreter
      • show all
      • + (추가)
      • 원하는 env 추가

add new env 화면

References

댓글