Skip to content

Instantly share code, notes, and snippets.

@abdennour
Created February 17, 2018 05:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abdennour/49b9950863fc28a59cb65042d79578c8 to your computer and use it in GitHub Desktop.
Save abdennour/49b9950863fc28a59cb65042d79578c8 to your computer and use it in GitHub Desktop.
Open Python Jupyter Notebook ( jupyter is a prerequisite )
#!/bin/bash
WS=/tmp/complete-python-bootcamp-notebook-udemy;
if [[ ! -d "$WS" ]]; then
git clone git@github.com:rathath-it/Complete-Python-Bootcamp.git $WS;
fi
cd $WS;
jupyter notebook;
@abdennour
Copy link
Author

Or, one command :

curl -sS -L https://gist.githubusercontent.com/abdennour/49b9950863fc28a59cb65042d79578c8/raw/05838a7521af902eca89f3bd74f372b9aedb5c2a/open-python-jupyter-notebook.sh | bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment