Skip to content

Instantly share code, notes, and snippets.

@josepsmartinez
Created February 16, 2021 22:20
Show Gist options
  • Save josepsmartinez/ae2b3e5a6f96b8b8d38b42d8b9ae7fe3 to your computer and use it in GitHub Desktop.
Save josepsmartinez/ae2b3e5a6f96b8b8d38b42d8b9ae7fe3 to your computer and use it in GitHub Desktop.
Install Jupyter Notebook
#!/bin/bash
# Sets up jupyter notebook (as in https://askubuntu.com/a/941745)
ubuntu_20() {
sudo apt install python3-notebook jupyter jupyter-core
}
ubuntu_19() {
sudo apt install python3-notebook jupyter jupyter-core python-ipykernel
}
ubuntu_18() {
ubuntu_19
}
ubuntu_17() {
sudo apt install jupyter-notebook jupyter-core python-ipykernel
}
ubuntu_20
ubuntu_19
ubuntu_18
ubuntu_17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment