Skip to content

Commit f4dd641

Browse files
committed
add new
1 parent 85750c9 commit f4dd641

File tree

8 files changed

+433
-157
lines changed

8 files changed

+433
-157
lines changed

00.ipynb

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"#Python-Lectures"
8+
]
9+
},
10+
{
11+
"cell_type": "markdown",
12+
"metadata": {},
13+
"source": [
14+
"##Introduction"
15+
]
16+
},
17+
{
18+
"cell_type": "markdown",
19+
"metadata": {},
20+
"source": [
21+
"Python is a modern, robust, high level programming language. It is very easy to pick up even if you are completely new to programming."
22+
]
23+
},
24+
{
25+
"cell_type": "markdown",
26+
"metadata": {},
27+
"source": [
28+
"##Installation"
29+
]
30+
},
31+
{
32+
"cell_type": "markdown",
33+
"metadata": {},
34+
"source": [
35+
"Mac OS X and Linux comes pre installed with python. Windows users can download python from https://www.python.org/downloads/ .\n",
36+
"\n",
37+
"To install IPython run,\n",
38+
"\n",
39+
" $ pip install ipython[all]\n",
40+
" \n",
41+
"This will install all the necessary dependencies for the notebook, qtconsole, tests etc."
42+
]
43+
},
44+
{
45+
"cell_type": "markdown",
46+
"metadata": {},
47+
"source": [
48+
"###Installation from unofficial distributions"
49+
]
50+
},
51+
{
52+
"cell_type": "markdown",
53+
"metadata": {},
54+
"source": [
55+
"Installing all the necessary libraries might prove troublesome. Anaconda and Canopy comes pre packaged with all the necessary python libraries and also IPython."
56+
]
57+
},
58+
{
59+
"cell_type": "markdown",
60+
"metadata": {},
61+
"source": [
62+
"####Anaconda"
63+
]
64+
},
65+
{
66+
"cell_type": "markdown",
67+
"metadata": {},
68+
"source": [
69+
"Download Anaconda from https://www.continuum.io/downloads\n",
70+
"\n",
71+
"Anaconda is completely free and includes more than 300 python packages. Both python 2.7 and 3.4 options are available."
72+
]
73+
},
74+
{
75+
"cell_type": "markdown",
76+
"metadata": {},
77+
"source": [
78+
"####Canopy"
79+
]
80+
},
81+
{
82+
"cell_type": "markdown",
83+
"metadata": {},
84+
"source": [
85+
"Download Canopy from https://store.enthought.com/downloads/#default\n",
86+
"\n",
87+
"Canopy has a premium version which offers 300+ python packages. But the free version works just fine. Canopy as of now supports only 2.7 but it comes with its own text editor and IPython environment."
88+
]
89+
},
90+
{
91+
"cell_type": "markdown",
92+
"metadata": {},
93+
"source": [
94+
"##Launching IPython Notebook"
95+
]
96+
},
97+
{
98+
"cell_type": "markdown",
99+
"metadata": {},
100+
"source": [
101+
"From the terminal\n",
102+
"\n",
103+
" ipython notebook\n",
104+
"\n",
105+
"In Canopy and Anaconda, Open the respective terminals and execute the above."
106+
]
107+
},
108+
{
109+
"cell_type": "markdown",
110+
"metadata": {},
111+
"source": [
112+
"##How to learn from this resource?"
113+
]
114+
},
115+
{
116+
"cell_type": "markdown",
117+
"metadata": {},
118+
"source": [
119+
"Download all the ipython notebooks from this repository https://github.com/rajathkumarmp/Python-Lectures\n",
120+
"\n",
121+
"Launch ipython notebook from the folder which contains the notebooks. Open each one of them\n",
122+
"\n",
123+
" Cell > All Output > Clear\n",
124+
" \n",
125+
"This will clear all the outputs and now you can understand each statement and learn interactively."
126+
]
127+
},
128+
{
129+
"cell_type": "markdown",
130+
"metadata": {},
131+
"source": [
132+
"##License"
133+
]
134+
},
135+
{
136+
"cell_type": "markdown",
137+
"metadata": {},
138+
"source": [
139+
"This work is licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/"
140+
]
141+
}
142+
],
143+
"metadata": {
144+
"kernelspec": {
145+
"display_name": "Python 2",
146+
"language": "python",
147+
"name": "python2"
148+
},
149+
"language_info": {
150+
"codemirror_mode": {
151+
"name": "ipython",
152+
"version": 2
153+
},
154+
"file_extension": ".py",
155+
"mimetype": "text/x-python",
156+
"name": "python",
157+
"nbconvert_exporter": "python",
158+
"pygments_lexer": "ipython2",
159+
"version": "2.7.10"
160+
}
161+
},
162+
"nbformat": 4,
163+
"nbformat_minor": 0
164+
}

0 commit comments

Comments
 (0)