the awesome python class part-1

6
Introduction to the Awesome . Installation and editor Usage… Part- 1

Upload: binay-kumar-ray

Post on 25-Jan-2017

102 views

Category:

Engineering


3 download

TRANSCRIPT

Page 1: The Awesome Python Class Part-1

Introduction to the Awesome .Installation and editor Usage…

Part-1

Page 2: The Awesome Python Class Part-1

About Me- Full Stack Web Developer in python/django.

- Experience in Web application development and many other things.

- Happy to help anyone and share knowledge.

Connect with me

YouTube https://www.youtube.com/channel/UCUG--Tc3bnSVvhgfTIaWwng

Facebook https://www.facebook.com/binayray2009

Wordpress https://binaykumarray.wordpress.com/

LinkedIn https://in.linkedin.com/in/binaykumarray

Email [email protected]

2

Page 3: The Awesome Python Class Part-1

Installation

●Linux○ Python 2.7 comes inbuilt with Linux systems.

○ For installing higher versions of python just type

■ sudo apt-get install python3.4

●Mac○ Just type “brew install python”

○ You can directly one of the following installer

■ https://www.python.org/downloads/mac-osx/ 3

Page 4: The Awesome Python Class Part-1

Windows Installation

●You need to download one of the correct installer depending on the windows os you have from the following link.

○https://www.python.org/downloads/release/python-343/

●Once done install the exe/msi file at C:\python27 or C:\python34 depedning on the version you selected.

●Open system properties, click on environment variables, go to path and add C:\python27;C:\python27\scripts; to it.

●Done ! Open cmd prompt and use python. 4

Page 5: The Awesome Python Class Part-1

Editor●It says “Life is easy without braces”

●Editor plays a vital role in python coding.

●Almost every editor supports python and all are good no doubt, but i haven’t used all. I will name two editors of my choice.

●Firstly Pycharm. It’s so powerful that it compiles code, checks for error, executes your code, manages your scm, Check for better coding practice, create vagrant env and what not.

●Second if Sublime text 2. My personal favourite, as it is lightweight, Supports all kind of plugins and give many access to the user.

●You can go for other editors like VIM, comodo, Notepad++ etc, but make sure it can properly indent your code and check for code errors.

5

Page 6: The Awesome Python Class Part-1

ThanksStay Tuned for the next part. Enjoy !!

6