Skip to main content

How to install python in windows 11 || install python 3.9.6

 hello everyone I am Rohit Singh at Road2Geeks welcome you here to my blog today I'm going to show you how to install the latest version of python in the windows 11 operating system so let's begin -

How to install python in windows 11 || install python 3.9.6

Table of content - 

  • download python
  • install python
  • installation verify

Download python-

now to install python you need to first download. it so that just simply go to your favorite Browser and in here just simply type python download then enter and then you will be seeing this www.python.org is basically our first search result.


how to download python

so let's just simply click on this download python and this will be automatically going to redirect you to this official site of python and in here you can clearly see this download python 3.9.6 button.

python.org

so you know just simply, Click on this download python 3.9.6 and this will automatically be going to start downloading your python 3.9.6.

python.org

I have now downloaded it completely and now the next step is I just simply minimize my Browser and if I just simply go to my download directory you can clearly see this python 3.9.6 has been rightly downloaded over here.python 3.9.6 downloaded

Install Python

now to install python just simply double click on it and then you'll be seeing this install python 3.9.6 installation wizard has been directly opening let us first minimize our download directory, all right so now you need to check this add python  3.9 to the path this is very important guys you need to check this add python 3.9 to the path otherwise, you need to set this path manually at the environment variables which are not at all recommended so always check this at python 3.9 to path all right.

add pip to path

so now that you have rightly checked so you can you know just simply click on this custom installation right so these are the files that you're going to install that is this documentation, peep and then idle then python test suite than py launcher.

items installed with python

and finally for all users all right so check all this and you know just click on next and in here you need to click on this install for all users so that you can create you know proper naming convention at your you know installation location so you know just simply you check this install for all users.

install python for all users

and then just simply click on install for installation and this will you know going to ask you for administrative privileges so you  know just simply click on yes to provide that

ADMIN PERMISSION


and you can clearly see our python 3.9.6  installation has been rightly begun it will take a couple of minutes so for which you know I'll be waiting for python installation, and have a cup of coffee. 

python installing

after installing python 3.9.6 yeah. so now we are here after a cup of coffee and as you can clearly see our python 3.9.6 setup was successful. so you know just simply click on close 

python installation successful

Installation verify

and now if you just simply click on this search icon and in here just simply type cmd you'll be seeing this command prompt so just you know simply click on that and this will  automatically be going to open your command prompt

open cmd in windows 11

to open your python just simply type python then hit enter.

python in cmd

 you can clearly see this python 3.9.6 has been indirectly installed and also will be getting the straight mark triple arrow so all this basically means your python shell has been directly open.

python interpreter in cmd

in here if you just want to print hello world in your console so you just simply type print("hello world") then hit enter and then you can clearly see this hello world has been directly shown in our console.

print hello world in python

now you can use it as a calculator for that simply use numbers and operators and hit enter for calculating.

using python interpreter as a calculator

now we will be testing it for installing modules like pandas from pip. for this we have to exit our interpreter by simply using exit() and hit enter like this-

exit python interpreter in cmd

now for installing pandas the command would be pip install pandas and hit enter.

syntax of pip

as you can see pandas has been installed successfully, therefore you can conclude our python has been installed successfully.

pandas installed successfully

so in this way, you install python in the windows 11 operating system. I have this youtube channel called Road2geeks in here you'll be seeing various tutorials along with some knowledge that I have voiceover so do also check our channel Road2geeks so that's all for this blog friends thank you very much for reading this blog, meet you in the next blog until then stay safe Jai hind.

Comments

Post a Comment

Share your views on this blog😍😍

Popular posts from this blog

How do I run Python on Google Colab using android phone?

Regardless of whether you are an understudy keen on investigating Machine Learning yet battling to direct reproductions on huge datasets, or a specialist playing with ML frantic for extra computational force, Google Colab is the ideal answer for you. Google Colab or "the Colaboratory" is a free cloud administration facilitated by Google to support Machine Learning and Artificial Intelligence research, where frequently the obstruction to learning and achievement is the necessity of gigantic computational force. Table of content- What is google colab? how to use python in google colab? Program to add two strings given by the user. save the file in google colab? What is google colab? You will rapidly learn and utilize Google Colab on the off chance that you know and have utilized Jupyter notebook previously. Colab is fundamentally a free Jupyter notebook climate running completely in the cloud. In particular, Colab doesn't need an arrangement, in addition to the notebook tha...

Introducing CodeMad: Your Ultimate Universal IDE with Custom Shortcuts

Introducing CodeMad: Your Ultimate Multi-Language IDE with Custom Shortcuts Welcome to the world of CodeMad, your all-in-one Integrated Development Environment (IDE) that simplifies coding and boosts productivity. Developed in Python, CodeMad is designed to make your coding experience smoother and more efficient across a variety of programming languages, including C, C++, Java, Python, and HTML. Whether you're a beginner or an experienced programmer, CodeMad is your go-to tool. In this blog, we'll dive deep into the workings of CodeMad, highlighting its unique features and easy installation process. The Power of Shortcuts CodeMad's intuitive interface is built around a set of powerful keyboard shortcuts that make coding a breeze. Here are some of the key shortcuts you'll find in CodeMad: Copy (Ctrl+C) : Duplicate text with ease. Paste (Ctrl+V) : Quickly insert copied content into your code. Undo (Ctrl+Z) and Redo (Ctrl+Y) : Correct mistakes and s...

LeetCode 88 Explained: Four Approaches, Mistakes, Fixes & the Final Optimal Python Solution

Evolving My Solution to “Merge Sorted Array” A practical, beginner-friendly walkthrough showing four versions of my code (from a naive approach to the optimal in-place two-pointer solution). Includes explanations, complexity and ready-to-paste code. Problem Summary You are given two sorted arrays: nums1 with size m + n (first m are valid) nums2 with size n Goal: Merge nums2 into nums1 in sorted order in-place . Version 1 — Beginner Approach (Extra List) I merged into a new list then copied back. Works, but not in-place and uses extra memory. class Solution: def merge(self, nums1, m, nums2, n): result = [] p1 = 0 p2 = 0 for _ in range(m+n): if p1 >= m: result.extend(nums2[p2:n]) break elif p2 >= n: result.extend(nums1[p1:m]) break elif nu...