Installation Of Python

hey Guys…… 

In this Blog i will teach you how to install python in simple way(official) for only windows user. 
Step 1: Select Version of Python to Install
1.The installation procedure involves downloading the official Python .exe installer and running it on your system.
2.The version you need depends on what you want to do in Python. For example, if you are working on a project coded in Python version 2.6, you probably need that version. If you are starting a project from scratch, you have the freedom to choose.
3.If you are learning to code in Python, we recommend you download both the latest version of Python 3.
Step 2: Download Python Executable Installer
1.Open your web browser and navigate to the Downloads for Windows section of the official Python website.
2.Search for your desired version of Python. At the time of publishing this article, the latest Python 3 release is version 3.9.0.
3.Select a link to download either the Windows x86-64 executable installer or Windows x86 executable installer. The download is approximately 25MB.
Step 3: Run Executable Installer
1. Run the Python Installer once downloaded. (In this example, we have downloaded Python 3.7.3.)
2. Make sure you select the Install launcher for all users and Add Python 3.7 to PATH checkboxes. The latter places the interpreter in the execution path. For older versions of Python that do not support the Add Python to Path checkbox, see Step 6.
Step 3. Select Install Now – the recommended installation options.
new
For all recent versions of Python, the recommended installation options include Pip and IDLE. Older versions might not include such additional features.
4. The next dialog will prompt you to select whether to Disable path length limit. Choosing this option will allow Python to bypass the 260-character MAX_PATH limit. Effectively, it will enable Python to use long path names.
Girl in a jacket
The Disable path length limit option will not affect any other system settings. Turning it on will resolve potential name length issues that may arise with Python projects developed in Linux.
Step 4: Verify Python Was Installed On Windows  
Navigate to the directory in which Python was installed on the system. In our case, it is C:\Users\Username\AppData\Local\Programs\Python\Python39 since we have installed the latest version.
Double-click python.exe.
The output should be similar to what you can see below:
Girl in a jacket
Step 5: Verify Pip Was Installed
1.If you opted to install an older version of Python, it is possible that it did not come with Pip preinstalled. Pip is a powerful package management system for Python software packages. Thus, make sure that you have it installed.
2.We recommend using Pip for most Python packages, especially when working in virtual environments.
To verify whether Pip was installed:
1.Open the Start menu and type “cmd.”
2.Select the Command Prompt application.
3.Enter pip -V in the console. If Pip was installed successfully, you should see the following output:
Girl in a jacket
In this tutorial, we detailed how to install Python 3.9.0 on Windows. If you are installing a different version of Python, you can expect a similar process.

Leave a comment

Design a site like this with WordPress.com
Get started