hey guys welcome to the next blog and I'm going to show you how to install Python 3 on your Windows 10 operating system so let's get started so first of all open your favorite browser on your Windows 10 operating system and then search for Python and the first link which will appear here will be from python dot o-r-g so we are going to click on that link and once this Python Wadi website is open you just need to scroll down a little until you see this downloads section and you can see at the time of writing this blog python 3.7.0 is the latest version of python available so we are going to click on this link which says python 3.7.0 and you will be redirected to this page which says python 3.7.0 and now i'm going to scroll down until i see the files here and you will see there are various kinds of installer available here we are going to install the python using the executable installer so we are going to choose this option which says windows x86 - 64 executable installer and now I will wait for this executable to be downloaded and once this executable is downloaded you just need to click on this Exe file and I'm going to minimize the browser here so you can see pythons 3.7.0 setup window has been started and on the first window you will see two options here one is Install Now and other is customized installation so what we are going to choose is this option which says customize installation because when you choose this Install Now option Python will be installed at this path which I don't want to use you can see it's a long path which I don't want to remember so I will use this option which says customize installation and I will also check this option which says add Python 3.7 to path so now let's click on customize installation and next you will see this optional feature window and you can see there are some optional feature which this Python installer will install for example documentation tip it will install which is a Python package manager idle IDE Python test suit and other feature it's going to install so I'm going to leave everything is default and then I'm going to click Next and now this next window will open which says advanced option here I'm going to check this option which says install for all users and I'm going to leave other checkboxes as checked and then you will see this section here which says customize install location so I want to install Python on my C directory so what I'm going to do is I'm going to open the Windows Explorer and I'm going to go to the C directory here and once the C directory is open I'm going to right click here and I'm going to create a new directory and I'm going to name this our directory as Python and then I'm going to press enter and this part I'm going to give here in the customize install location so I'm going to just give this part which says C colon slash Python and then backslash Python 3 7 3 7 here means that we are going to install 3.7 version of Python so now python will be installed at this location on my computer and then i'm going to click on the install button here and then you will see the installation will start and it will be finished in a few seconds so just wait for the installation to complete and after some time i can see this message which say setup was successful so i'm going to click on this close button which is going to close this installer so now in order to check whether python is installed on our Windows operating system or not we are going to search for Python here and you will see few options here one is this Python 3.7 terminal other is idle IDE so first of all we are going to click on this option which says Python 3.7 64-bit which is going to open this kind of terminal so this is a python terminal and here we can for example print something so i'm going to just write print and in the parenthesis and in between the double quotes I can just write hello world and then press ENTER which is going to in return print hello world that means python 3.7 terminal is working so i'm going to close this terminal now and once again i'm going to search for python here and this time i'm going to select this option which says idle ok so just select this option which says I do and in the parentheses Python 3.7 64 bit so this Idol is an IDE which comes with Python installation at the time of installation we have chosen this option to install Idol that's why we can see this option here and also this is an interactive shell so you can once again write a print and inside the parentheses you can just write for example once again hello world and then press ENTER and it's going to give you this kind of output here so now python interactive shell is working and idle ide is also working so i'm going to close this idle ide and now i want to check whether python is working using my command prompt or not so i'm going to right click on this windows button and then i'm going to click on command prompt and here i'm going to first of all write python and then press enter and you can see this python option is working now even on your command prompt right so here also you can just write print and inside the parenthesis you can just print hello world and then press enter and it prints hello world in return so now we have successfully installed Python on our Windows 10 operating system so from the next blog we are going to use these tools in order to develop Python code so stay tuned and see you in the next blog
Post a Comment