Skip to main content

HOW TO DOWNLOAD AND INSTALL PYTHON FOR WINDOWS

Hello guys. In this tutorial, I will be going to show you how to set up the python environment on your Windows. So, let us get started.

STEP1:
First, go to this link: https://www.python.org/downloads/


STEP2:
Then scroll down and click on the latest version of Python available. At the time of writing this blog, the latest version is Python 3.7.4


STEP3:

After, clicking that you will get another page, in that scroll down until you find FILES... see the picture below...

Click on the link according to your computer's configuration i.e., 64bit or 32 bit, now the .exe file will be downloaded...



 Step 4:

 Now, open the file and you will have an environment like the picture shown below,



Make sure that you should add the Python to PATH so that you can work with python from CMD.

After that click on Install Now

To be installed it will take some time.

After that go to the CMD and type python, it will show you the information about it




THANK YOU... HOPE YOU HAVE ENJOYED MY TUTORIAL. FOR MORE SUBSCRIBE AND FOLLOW MY BLOG.

SUBSCRIBE TO MY YOUTUBE CHANNEL: https://www.youtube.com/channel/UCPnw9O8cvhX9mS195imI8Sw

FOLLOW ME ON GITHUB: https://github.com/VallamkondaNeelima?tab=repositories

FOLLOW ME ON INSTAGRAM FOR DAILY QUIZZES AND MORE: https://www.instagram.com/neelimavallamkonda2312/


Comments

Popular posts from this blog

CHATBOT WITH SPEECH RECOGNITION AND PYTTSX3 USING PYTHON

NOTE: VIEW THIS POST IN DESKTOP SITE FOR THE BEST EXPERIENCE Hello guys. Welcome to my blog. Here I will explain to you how to create a chatbot that has speech as it’s both input and also output. So, let us get started. In this tutorial, I am using some of the libraries in Python like SpeechRecognition, Pyaudio, Chatterbot et cetera. I am going to explain to you how to install these libraries and work with them one by one separately and at last how to integrate them. SPEECH TO TEXT At first, you have to install the Speech Recognition library. You should not use the Python3.7 version because it does not support speech recognition. I am using a 3.6 version for this tutorial. Now, you should install the speech recognition library from the command prompt. Use the following command. pip3.6 install SpeechRecognition Now, you should install PyAudio. First, you have to find the version of your Python and also the configuration of your machine. Open your cmd and type p...

LENGTH OF LONGEST VALID SUBSTRING

GIVEN A STRING OF PARENTHESIS, PRINT THE LENGTH OF THE LONGEST BALANCED SUBSTRING . FOR EXAMPLE: GIVEN,                1.  ()() ---> 4                 2.  ()())()()() ---> 6  Brute Force Approach:   It is to find all the substrings, and check whether they are balanced or not, and simultaneously updating the result if we find a larger valid substring than the previous one. But, this takes the time of O(N^3), since finding all the substrings take O(N^2), and for each substring, to find whether it is a valid substring, it takes a time of O(N), so this constitutes a total of O(N^3).  USING STACK:  In this approach, we will maintain a stack to store the indices of the traversed opening brackets i.e., '('. [YOU WILL KNOW THE REASON SOON, KEEP READING THE POST].  And a variable res , to store the length of the longest substring known till now....

RECOGNITION OF HANDWRITTEN DIGITS(MNIST DATA) PART ONE USING PYTORCH

HELLO GUYS, IN THIS BLOG POST I WANT TO SHOW THE BASIC INTRO TO IDENTIFICATION OF HANDWRITTEN DIGITS USING PYTORCH MNIST DATA. MNIST DATA IS THE COLLECTION OF HANDWRITTEN DIGITS. MNIST CONTAINS 70,000 HANDWRITTEN DIGITS, 60,000 FOR TRAINING AND REMAINING 10,000 ARE FOR TESTING.  THE  IMAGES ARE GRAYSCALE AND 28x28 PIXELS. WE CAN DOWNLOAD THE DATASET USING THE CODE BELOW. Here, the parameters batch_size is kept to 64 so that the training images are grouped into 64 each and shuffle is kept to TRUE, such that each time we run the code it shuffles the data and returns an iterable with new groups of batch_size. As the trainloader is iterable, we are iterating through it and collecting the first batch of images and it's corresponding labels into images and labels respectively. Now, run the above code and see the output. you will see something like this. torch.Size([64, 1, 28, 28]) torch.Size([64])  It shows that there are 64 images with grayscale an...