Skip to content

Commit 59b3c65

Browse files
committed
Setup, thanks to DjangoGirls and Geek Girls Carrots.
1 parent 8df390a commit 59b3c65

File tree

2 files changed

+146
-9
lines changed

2 files changed

+146
-9
lines changed

part-1.ipynb

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
{
22
"metadata": {
3+
"kernelspec": {
4+
"codemirror_mode": {
5+
"name": "ipython",
6+
"version": 2
7+
},
8+
"display_name": "IPython (Python 2)",
9+
"language": "python",
10+
"name": "python2"
11+
},
312
"name": "",
413
"signature": "sha256:3d8e168c53b333482ede8c41b34f62222e7a07d410c6665c60f32285923930fa"
514
},
@@ -52,20 +61,20 @@
5261
]
5362
},
5463
{
55-
"cell_type": "markdown",
64+
"cell_type": "heading",
65+
"level": 2,
5666
"metadata": {},
5767
"source": [
58-
"If you haven't already, please complete the short setup instructions at:\n",
59-
"http://bit.ly/intro-setup"
68+
"Did you do the setup?"
6069
]
6170
},
6271
{
63-
"cell_type": "code",
64-
"collapsed": false,
65-
"input": [],
66-
"language": "python",
72+
"cell_type": "markdown",
6773
"metadata": {},
68-
"outputs": []
74+
"source": [
75+
"Before the workshop begins, please complete the short Python 3.4 setup instructions:\n",
76+
"http://nbviewer.ipython.org/github/pythonsd/intro-to-python/blob/master/setup.ipynb"
77+
]
6978
},
7079
{
7180
"cell_type": "markdown",
@@ -91,7 +100,7 @@
91100
},
92101
{
93102
"cell_type": "heading",
94-
"level": 3,
103+
"level": 2,
95104
"metadata": {},
96105
"source": [
97106
"The Game plan"

setup.ipynb

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
{
2+
"metadata": {
3+
"kernelspec": {
4+
"codemirror_mode": {
5+
"name": "ipython",
6+
"version": 2
7+
},
8+
"display_name": "IPython (Python 2)",
9+
"language": "python",
10+
"name": "python2"
11+
},
12+
"name": "",
13+
"signature": "sha256:7e77fab303afbbd6ade7a9ab434bf219c12be6e73b5182b90eacad402e5e1b61"
14+
},
15+
"nbformat": 3,
16+
"nbformat_minor": 0,
17+
"worksheets": [
18+
{
19+
"cells": [
20+
{
21+
"cell_type": "heading",
22+
"level": 1,
23+
"metadata": {},
24+
"source": [
25+
"Setup (before the workshop)"
26+
]
27+
},
28+
{
29+
"cell_type": "markdown",
30+
"metadata": {},
31+
"source": [
32+
"Please complete the instructions on this page before you arrive at the Intro to Python workshop.\n",
33+
"\n",
34+
"Stuck or need help? [Ask for help by describing your error here](https://github.com/pythonsd/intro-to-python/issues/new), in as much detail as possible. Or ask for help through [SD Python](http://www.meetup.com/pythonsd/), [SD Pyladies](http://www.meetup.com/sd-pyladies/), or [IE Pyladies](http://www.meetup.com/iepyladies/)."
35+
]
36+
},
37+
{
38+
"cell_type": "markdown",
39+
"metadata": {},
40+
"source": [
41+
"> These instructions are based on tutorials by [Geek Girls Carrots](http://django.carrots.pl/) and [DjangoGirls](http://tutorial.djangogirls.org/python_installation/README.html)."
42+
]
43+
},
44+
{
45+
"cell_type": "heading",
46+
"level": 2,
47+
"metadata": {},
48+
"source": [
49+
"Windows"
50+
]
51+
},
52+
{
53+
"cell_type": "markdown",
54+
"metadata": {},
55+
"source": [
56+
"You can download Python for Windows from the website https://www.python.org/download/releases/3.4.1/. After downloading the *.msi file, you should run it (double-click on it) and follow the instructions there. It is important to remember the path (the directory) where you installed Python. It will be needed later!"
57+
]
58+
},
59+
{
60+
"cell_type": "heading",
61+
"level": 2,
62+
"metadata": {},
63+
"source": [
64+
"Linux"
65+
]
66+
},
67+
{
68+
"cell_type": "markdown",
69+
"metadata": {},
70+
"source": [
71+
"It is very likely that you already have Python installed out of the box. To check if you have it installed (and which version it is), open a console and type the following command:\n",
72+
"\n",
73+
"```\n",
74+
"$ python3 --version\n",
75+
"Python 3.4.1\n",
76+
"```\n",
77+
"\n",
78+
"If you don't have Python installed or if you want a different version, you can install it as follows:"
79+
]
80+
},
81+
{
82+
"cell_type": "heading",
83+
"level": 3,
84+
"metadata": {},
85+
"source": [
86+
"Ubuntu"
87+
]
88+
},
89+
{
90+
"cell_type": "markdown",
91+
"metadata": {},
92+
"source": [
93+
"Type this command into your console:\n",
94+
"\n",
95+
"```\n",
96+
"sudo apt-get install python3.4\n",
97+
"```"
98+
]
99+
},
100+
{
101+
"cell_type": "heading",
102+
"level": 3,
103+
"metadata": {},
104+
"source": [
105+
"Fedora"
106+
]
107+
},
108+
{
109+
"cell_type": "markdown",
110+
"metadata": {},
111+
"source": [
112+
"Use this command in your console:\n",
113+
"\n",
114+
"```\n",
115+
"sudo yum install python3.4\n",
116+
"```"
117+
]
118+
},
119+
{
120+
"cell_type": "markdown",
121+
"metadata": {},
122+
"source": []
123+
}
124+
],
125+
"metadata": {}
126+
}
127+
]
128+
}

0 commit comments

Comments
 (0)