{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Notebook Basics" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This notebook assumes that you already have IPython [installed](http://ipython.org/install.html) and are able to start the notebook server by running:\n", "\n", " ipython notebook\n", "\n", "For more details on how to run the notebook server, see [Running the Notebook Server](Running the Notebook Server.ipynb)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## The Notebook dashboard" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "When you first start the notebook server, your browser will open to the notebook dashboard. The dashboard serves as a home page for the notebook. Its main purpose is to display the notebooks in the current directory. For example, here is a screenshot of the dashboard page for the `examples` directory in the IPython repository:\n", "\n", "\n", "\n", "The top of the notebook list displays clickable breadcrumbs of the current directory. By clicking on these breadcrumbs or on sub-directories in the notebook list, you can navigate your file system.\n", "\n", "To create a new notebook, click on the \"New Notebook\" button at the top of the list.\n", "\n", "Notebooks can be uploaded to the current directory by dragging a notebook file onto the notebook list or by the \"click here\" text above the list.\n", "\n", "The notebook list shows a red \"Shutdown\" button for running notebooks and a \"Delete\" button for stopped notebooks. Notebook remain running until you explicitly click the \"Shutdown\" button; closing the notebook's page is not sufficient.\n", "\n", "To see all of your running notebooks along with their directories, click on the \"Running\" tab:\n", "\n", "\n", "\n", "This view provides a convenient way to track notebooks that you start as you navigate the file system in a long running notebook server." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Overview of the Notebook UI" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "