본문 바로가기
AI 이론과 개발의 혼재/Python

Anaconda, TensorFlow 설치

by ministar 2020. 1. 29.

 

1. Anaconda 설치

https://www.anaconda.com/distribution/#download-section

 

Anaconda Python/R Distribution - Free Download

Anaconda Distribution is the world's most popular Python data science platform. Download the free version to access over 1500 data science packages and manage libraries and dependencies with Conda.

www.anaconda.com

 

2. Conda 가상환경 생성

Anaconda Prompt 실행 후, 아래와 같이 입력한다.

conda create -n [가상환경명] python=3.7

 

3. Tensorflow 설치

가상환경을 활성화 하고, 그 안에 필요한 library를 설치한다. 

# 가상환경 활성화
activate [가상환경이름]

# 필요한 library 설치
pip install tensorflow

 

잘 설치 되고 있다면 끗~!

 

4. Jupyter 가상환경 연결

내가 만든 가상환경을 Jupyter notebook과 연동해보자 

pip install ipykernel

#가상환경 jupyter와 연결
python -m ipykernel install --user --name [가상환경 이름] --display-name "[보여줄 커널명]"

댓글