Skip to content

Instantly share code, notes, and snippets.

@bspavel
Last active September 4, 2018 19:31
Show Gist options
  • Save bspavel/6b471c22bc105d1a7d642dfad2461184 to your computer and use it in GitHub Desktop.
Save bspavel/6b471c22bc105d1a7d642dfad2461184 to your computer and use it in GitHub Desktop.
the installer of jupiter on the raspberry pi
#!/bin/bash
#http://www.knight-of-pi.org/installing-jupyter-on-a-raspberry-pi-for-notebooks-debugging-and-data-analysis/
#https://jupyter-notebook.readthedocs.io/en/stable/public_server.html
#https://aichamp.wordpress.com/2017/06/13/setting-up-jupyter-notebook-server-as-service-in-ubuntu-16-04/
if [ "$(whoami)" != "root" ]; then
echo "Run script as ROOT please. (sudo !!!)"
exit
fi
sudo apt-get update
sudo apt-get -y upgrade
sudo rpi-update
#sudo apt-get install -y python-dev
#sudo pip install --upgrade pip
#sudo pip install jupyter
#sudo apt-get install -y python-seaborn python-pandas
#sudo apt-get install -y ttf-bitstream-vera
sudo pip3 install jupyter
sudo ipython3 kernelspec install-self
jupyter notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment