Changes between Initial Version and Version 1 of linux/jupyter
- Timestamp:
- 2016/07/20 17:28:46 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
linux/jupyter
v1 v1 1 # Jupyter Notebookメモ 2 3 CentOS7へのインストール。折角だからPython3系を利用してみる。 4 bashカーネルも入れておく。 5 6 {{{ 7 yum install -y epel-release 8 yum install -y python34 9 curl -L https://bootstrap.pypa.io/get-pip.py | python3 10 pip3 install jupyter 11 pip3 install bash_kernel 12 python3 -m bash_kernel.install 13 jupyter-notebook 14 }}}