su root yum install bzip2 -y
useradd jupyter echo 'jupyter ALL = (ALL) NOPASSWD: ALL' > /etc/sudoers.d/20-jupyter su jupyter cd ~
mkdir ~/notebooks
curl -o anaconda.sh https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh
bash anaconda.sh
su root vi /etc/profile export PATH=$PATH:/home/jupyter/anaconda3/bin :wq source /etc/profile
su jupyter cd ~ jupyter notebook --generate-config
vi /home/jupyter/.jupyter/jupyter_notebook_config.py Change localhost with IP wq:
su root cd /home/jupyter nohup /home/jupyter/anaconda3/bin/jupyter notebook --config /home/jupyter/.jupyter/jupyter_notebook_config.py &