DEV Community

Cover image for Day 0 - Setting it up [Python for Students]
Wriju's Blog
Wriju's Blog

Posted on

Day 0 - Setting it up [Python for Students]

Day 0 - Setting up the Laptop/Desktop

Course requires a very simple setup. There are two important to which will be used during this course,

  • Microsoft Teams
  • Python runtime

However, the MS Teams and Python installation are optional because you can use them from Browser. For Microsoft teams when you launch it, it asks whether you want to use the installed application or continue with the browser. So if you do not have an app installed you can join the team by having your browser up and running.

For some reason if you cannot install Python in your machine, which I highly recommend then you can also use it from your browser. I say, install it. This will not take a lot of space in your machine and will give you some peace of mind.

Here are the instructions given for the setup in both Windows operating systems and Linux based operating systems like Ubuntu.

How you can install Python

Windows

Microsoft Teams can be downloaded from https://www.microsoft.com/en-in/microsoft-365/microsoft-teams/download-app

For Python please download the Windows version from https://www.python.org/ftp/python/3.8.5/python-3.8.5-amd64.exe

Ubuntu

Microsoft Teams can be downloaded from https://www.microsoft.com/en-in/microsoft-365/microsoft-teams/

For Python please download the Ubuntu version from
Python.org

After Python is installed open Command Prompt in Windows or Terminal in Ubuntu type

python --version
Enter fullscreen mode Exit fullscreen mode

if this don't work then use

python3 --version
Enter fullscreen mode Exit fullscreen mode

Next: Day 1

Back to Index

Top comments (0)