2. Python Programming Development Environment Set-up
2. Python Programming Development Environment Set-up
environment set-up
Setting Up Your Python Programming Environment
A proper Python
environment provides
Choosing the Right Tools
the necessary tools to
for Your Coding Journey
write, run, and manage
Python code.
It helps to avoid
It includes Python itself,
common conflicts and
along with helpful tools
issues when using
and libraries.
Python.
Installing Python (The Core)
• Python is the core programming language you will be
working with.
• version of Python (latest) is needed.
• there are different ways to get it (through distribution,
or direct download).
• Python alone may not be enough
Interactive Python (IPython)
IPython is an
It allows you to run
enhanced
Python code line by
interactive shell for
line and see results
Python (a command-
immediately.
line interface).
They allow a mix of code, text, visualizations, and notes in one document.
Choosing
Main environment for this training
If the you want more control of your code, you can use VS
Code.
https://www.python.org/
https://www.anaconda.com/download
https://code.visualstudio.com/
Anaconda
1 2 3 4 5
Go to the official Navigate to the Choose the correct Select the Python 3.x Download the
Anaconda website. download section. installer for your version (preferably graphical installer for
operating system the latest stable your system.
(Windows, macOS, or version).
Linux).
installation
Run the downloaded installer.
Once the web browser has loaded, you should see a screen with
all of your files.
This will create a new python document where you can write
and run code.
You can rename the file by clicking on the name at the top of
the page.
Test Your Installation: write your first
program
Emphasize the
importance of being Makes it easier to
Prevents lost files and
organized, as this skill update, and make
confusion.
will carry forward into changes to the course.
coding as well.
Possible Structure