ThilinaWanshathilaka1
0 views
16 slides
Oct 11, 2025
Slide 1 of 16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
About This Presentation
How to start python deveopment by installing IDE
Size: 1.17 MB
Language: en
Added: Oct 11, 2025
Slides: 16 pages
Slide Content
02-Python Let’s Get Start By Thilina Wanshathilaka
Getting Python for Windows OS Go to https://www.python.org/downloads/ Select appropriate version based on your operating system Find the correct bit version if needed (Windows OS) Click on Download “ Windows installer” and wait until download complete. If you don’t have windows operating system please inform your instructor
Getting Python Windows OS
Installing Python for Windows OS Click on Newly downloaded installer Remember to check the check box “Add Python <version> to PATH” Click Install Now and wait until finish installation Run command prompt and type command ‘ py ’ If you get python interactive you all set for next session
Installing Python for Windows OS
Python Interactive
Python Interactive Python Interactive or Python Shell is a quick ways to run a code by developer. This is simple application that provides access to all built in functions, installed modules and libraries that provides novice and expert developers to explore and test before put in to program. Lets try python interactive
Python Scripts Run command prompt Enter command notepad hello.py and new N otepad will open Type statement in hello.py print (‘Hello Python’) Press Ctrl+S or save hello.py Go to command prompt and type py hello.py and press enter check the output and make necessary adjustment
Setting up IDE (Atom) Go to Atom.io and download Atom IDE Install Atom and wait until process is complete, restart computer and open Atom. Setup working folder Go to install option and search for platformio -ide-terminal Click install and wait until process is complete Restart the Atom and now you are ready to roll
Download Atom
Get Platformio IDE Terminal
You all set
Let’s Do something Challenging Start Atom and create file Challenge1.py Enter below statement Run your program by typing py Challenge1.py in platformio ide terminal Check everything is right Let’s correct the mistake we made in program