Changes between Initial Version and Version 1 of linux/jupyter


Ignore:
Timestamp:
2016/07/20 17:28:46 (8 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/jupyter

    v1 v1  
     1# Jupyter Notebookメモ 
     2 
     3CentOS7へのインストール。折角だからPython3系を利用してみる。 
     4bashカーネルも入れておく。 
     5 
     6{{{ 
     7yum install -y epel-release 
     8yum install -y python34 
     9curl -L https://bootstrap.pypa.io/get-pip.py | python3 
     10pip3 install jupyter 
     11pip3  install bash_kernel 
     12python3 -m bash_kernel.install 
     13jupyter-notebook 
     14}}}