Skip to content

Commit b2378f9

Browse files
committed
add binder landing page
1 parent ada297e commit b2378f9

File tree

1 file changed

+75
-0
lines changed

1 file changed

+75
-0
lines changed

binder/Index.ipynb

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Welcome to Jupyter!"
8+
]
9+
},
10+
{
11+
"cell_type": "markdown",
12+
"metadata": {},
13+
"source": [
14+
"This repo contains an introduction to [Jupyter](https://jupyter.org) and [IPython](https://ipython.org).\n",
15+
"\n",
16+
"Outline of some basics:\n",
17+
"\n",
18+
"* [Notebook Basics](../examples/Notebook/Notebook Basics.ipynb)\n",
19+
"* [IPython - beyond plain python](../examples/IPython Kernel/Beyond Plain Python.ipynb)\n",
20+
"* [Markdown Cells](../examples/Notebook/Working With Markdown Cells.ipynb)\n",
21+
"* [Rich Display System](../examples/IPython Kernel/Rich Output.ipynb)\n",
22+
"* [Custom Display logic](../examples/IPython%20Kernel/Custom%20Display%20Logic.ipynb)\n",
23+
"* [Running a Secure Public Notebook Server](../examples/Notebook/Running%20the%20Notebook%20Server.ipynb#Securing-the-notebook-server)\n",
24+
"* [How Jupyter works](../examples/Notebook/Multiple%20Languages%2C%20Frontends.ipynb) to run code in different languages."
25+
]
26+
},
27+
{
28+
"cell_type": "markdown",
29+
"metadata": {},
30+
"source": [
31+
"You can also get this tutorial and run it on your laptop:\n",
32+
"\n",
33+
" git clone https://github.com/ipython/ipython-in-depth\n",
34+
"\n",
35+
"Install IPython and Jupyter:\n",
36+
"\n",
37+
"with [conda](https://www.anaconda.com/download):\n",
38+
"\n",
39+
" conda install ipython jupyter\n",
40+
"\n",
41+
"with pip:\n",
42+
"\n",
43+
" # first, always upgrade pip!\n",
44+
" pip install --upgrade pip\n",
45+
" pip install --upgrade ipython jupyter\n",
46+
"\n",
47+
"Start the notebook in the tutorial directory:\n",
48+
"\n",
49+
" cd ipython-in-depth\n",
50+
" jupyter notebook"
51+
]
52+
}
53+
],
54+
"metadata": {
55+
"kernelspec": {
56+
"display_name": "Python 3",
57+
"language": "python",
58+
"name": "python3"
59+
},
60+
"language_info": {
61+
"codemirror_mode": {
62+
"name": "ipython",
63+
"version": 3
64+
},
65+
"file_extension": ".py",
66+
"mimetype": "text/x-python",
67+
"name": "python",
68+
"nbconvert_exporter": "python",
69+
"pygments_lexer": "ipython3",
70+
"version": "3.6.3"
71+
}
72+
},
73+
"nbformat": 4,
74+
"nbformat_minor": 2
75+
}

0 commit comments

Comments
 (0)