Information Security ˗ˋˏ ♡ ˎˊ˗

OS/Linux

[Ubuntu] Ubuntu에서 Jupyter Notebook 환경 구축

토오쓰 2020. 5. 18. 21:08

 

사용한 ubuntu version

 

 

 

 

1. Python3 다운로드 및 실행 확인

1.1 python3을 다운로드

$ apt-get install python3

 

1.2 버전 확인

$ python3 --version

 

1.3 실행

$ python3

 

2. pip(파이썬 패키지 관리자) 설치

2.1 파일 다운로드

$ wget https://bootstrap.pypa.io/get-pip.py

 

2.2 설치된 파일 확인

$ ls

 

2.3 get-pip.py 파일이 존재

=> 아래 명령어를 통해 파일을 실행

$ python3 get-pip.py

 

2.4 버전을 확인

$ pip --version

 

2.5 설치되어 있는 Python 패키지 확인

$ pip list

 

2.6 Python 패키지 검색하기

 https://pypi.org/

 

PyPI · The Python Package Index

The Python Package Index (PyPI) is a repository of software for the Python programming language.

pypi.org

2.7 pandas 패키지 설치

$ pip3 install pandas

2.8 pip를 사용하여 TensorFlow 설치

$ pip install --upgrade tensorflow

 

GPU 지원이 포함된 출시(Ubuntu 및 Windows)

$ pip install --upgrade tensorflow-gpu

 

 

 

3. Jupyter 패키지 설치

3.1 pip를 이용하여 jupyter 패키지를 설치

$ pip install jupyter

 

3.2 설치 유무와 버전을 확인

$ jupyter --version

 

3.3 실행

$ jupyter notebook