This is an old revision of the document!


아나콘다 설치

아나콘다 가상환경 생성 및 tensorflow용 세팅

  • 가상환경 생성
    • conda create -n 가상환경이름 설치파이썬버전
      • ex) conda create -n tf1 python=3.7
      • ex) conda create -n tf2 python=3.7
  • 생성한 가상환경 확인
    • conda info –envs
  • 가상환경 활성화
    • activate 가상환경이름
      • ex) activate tf1
      • ex) activate tf2
  • (가상환경에)텐서플로우 설치
    • conda install tensorflow==버전
      • ex) conda install tensorflow==1.15
      • ex) conda install tensorflow==2.0
  • (가상환경에)주피터 노트북 설치 및 실행
    • 설치 : conda install jupyter
    • 실행 : jupyter notebook
Navigation