0% found this document useful (0 votes)
41 views9 pages

Practice For Lesson 1-1

Uploaded by

ade
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views9 pages

Practice For Lesson 1-1

Uploaded by

ade
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Practices for Lesson 1:

Basics of Python
Programming

Copyright © 2020, Proton Expert Systems & Solutions. All rights reserved
1 Practices for Lesson 1: Basics of Python Programming
Practices for Lesson 1
Overview
In these practices for this lesson, you will install Python IDLE, configure pip, create python
applications using various python programming features along with modules and packages.

Copyright © 2020, Proton Expert Systems & Solutions. All rights reserved
2 Practices for Lesson 1: Basics of Python Programming
Practice of 1-1: Installing and configuring Python IDLE
Overview
In this practice, you will learn to install Python IDLE and Configure pip.

Tasks:
1. On your Local Machine, using a browser, open the below URL to download Python IDLE
in windows operating system
https://www.python.org/downloads/windows/
2. Click on Download windowsx86-64 executable installer to download the latest version
of python (3.9).

3. After the Installer is successfully downloaded on your local machine, double click the
executable file python-3.9.0-amd64, as shown below.

Copyright © 2020, Proton Expert Systems & Solutions. All rights reserved
3 Practices for Lesson 1: Basics of Python Programming
4. As the Installer runs, click Install Now to install Python as shown below

5. Verify the installation progress as shown below.

Copyright © 2020, Proton Expert Systems & Solutions. All rights reserved
4 Practices for Lesson 1: Basics of Python Programming
6. On successful installation, verify that the Setup was successful as shown below and
click Close.

7. Setting the path for Python IDLE and configuring pip


a. Verify the Installation Location and Path of Python IDLE in your local machine. By
default, Python is installed in the path on your local machine
C:\Users\<username>\AppData\Local\Programs\Python\Python39\
For Example:
C:\Users\user\AppData\Local\Programs\Python\Python39\
b. Run SystemPropertiesAdvanced.exe in the Run Dialog Box on your local machine.

c. In the window system properties pop up, click Environment Variables.


d. Select the Path Variable under System Variables and Click New to add the path as
shown below.

Copyright © 2020, Proton Expert Systems & Solutions. All rights reserved
5 Practices for Lesson 1: Basics of Python Programming
e. Copy and paste the path of Python IDLE as shown below and click OK.
For Example, the Path of Python IDLE is:
C:\Users\user\AppData\Local\Programs\Python\Python39\

Copyright © 2020, Proton Expert Systems & Solutions. All rights reserved
6 Practices for Lesson 1: Basics of Python Programming
f. Further, set the path for pip by clicking New to add the path as shown below.

g. Copy and paste the Python Scripts path to the Path and click OK as shown below.
For Example, the Python Scripts path is:

Copyright © 2020, Proton Expert Systems & Solutions. All rights reserved
7 Practices for Lesson 1: Basics of Python Programming
C:\Users\user\AppData\Local\Programs\Python\Python39\Scripts\

h. Click OK to close the Environment Variable dialog box.


i. Click OK on the System properties dialog box to close it.
8. Create Python IDLE Desktop shortcut on Your Local Machine.
a. Navigate to the Python IDLE installed path on your local machine as shown below.
For Example,
C:\Users\user\AppData\Roaming\Microsoft\Windows\Start
Menu\Programs\Python 3.9

b. Right click IDLE (Python 3.9 64-bit), from the drop down select Send to and select
Desktop (Create shortcut).
c. Verify that the Python IDLE shortcut is created on your desktop as shown below.

Copyright © 2020, Proton Expert Systems & Solutions. All rights reserved
8 Practices for Lesson 1: Basics of Python Programming
Copyright © 2020, Proton Expert Systems & Solutions. All rights reserved
9 Practices for Lesson 1: Basics of Python Programming

You might also like