Overview
Teaching: 15 min Exercises: 0 minQuestions
What is JupyterHub?
Objectives
learn about our overall computing framework for geohackweek
The JupyterHub for GeohackWeek is accessible at: https://jupyterhub.cloudmaven.org
You will need a Github account for authentication.
Here is an amazing slide deck about Jupyterhub: JupyterHub Thing Explainer
If you’re lazy, here is one slide:
This is a conceptual graphic of our cloud-based JupyterHub environment for geohackweek:
Open a new Jupyter Notebook terminal.
If you type conda
, you will get a conda usage guide:
usage: conda [-h] [-V] command ...
If you get “conda: command not found”, you will need to add the conda path to your bash profile by exporting the path:
export PATH=/opt/anaconda/bin:$PATH
Next, we are going to clone the Git repository we will be using for the tutorials this week. You will need to clone this into the ‘notebooks’ folder in your home directory.
$ ls # check your present working directory and list available files and folders
$ cd notebooks # change directory to notebooks
$ pwd # check present working directory again, it should say something like /home/user/notebooks
$ git clone 'https://github.com/geohackweek/tutorial_contents.git'
$ ls # check that the folder is there
Key Points