Anything

Anaconda에서 Jupyter notebook

씬프 2020. 9. 21. 13:15
반응형

데이터 분석, 머신러닝, 딥러닝에 좋다고 해서 설치해봄

먼저 Anaconda 가상환경에 접근해서 시작

 

# pip
pip install --upgrade pip

# tensorflow-gpu 설치
# jupyter notebook에서 사용할 것
pip install --ignore-installed --upgrade tensorflow-gpu

# jupyter 설치
pip install jupyter

# jupyter 실행
jupyter notebook

 

 

 

Jupyter notebook 실행한 환경

 

위와 같은 웹페이지로 Jupyter notebook이 실행됨

오른쪽 위 메뉴로 Folder 생성, Python3 파일 생성,

Python3 파일에서 tensorflow 모듈 사용 가능

'Anything' 카테고리의 다른 글

Git 명령어 정리  (0) 2021.02.10
GCP에 Flask  (0) 2021.02.08
Vundle로 Vim Plugin 구축  (0) 2020.09.21
Ubuntu Anaconda 환경 설치  (0) 2020.09.21
Ubuntu zsh 설치  (0) 2020.09.21