<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Manupriya R</title>
    <description>The latest articles on DEV Community by Manupriya R (@manupriya_r).</description>
    <link>https://dev.to/manupriya_r</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1745012%2F3d7494cc-0fa6-485b-a8f9-24aa829bd7e4.png</url>
      <title>DEV Community: Manupriya R</title>
      <link>https://dev.to/manupriya_r</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/manupriya_r"/>
    <language>en</language>
    <item>
      <title>How to install Python on Windows</title>
      <dc:creator>Manupriya R</dc:creator>
      <pubDate>Tue, 09 Jul 2024 07:11:29 +0000</pubDate>
      <link>https://dev.to/manupriya_r/how-to-install-python-on-windows-51jj</link>
      <guid>https://dev.to/manupriya_r/how-to-install-python-on-windows-51jj</guid>
      <description>&lt;p&gt;Dear Readers,&lt;/p&gt;

&lt;p&gt;This is my first blog about how to install python on Windows. Please find the below details for the same.&lt;/p&gt;

&lt;p&gt;System Requirements check:&lt;/p&gt;

&lt;p&gt;Go to Settings--&amp;gt;About&lt;/p&gt;

&lt;p&gt;Example&lt;br&gt;
OS: Windows 10 Pro&lt;br&gt;
System Type: 64-bit operating system (Choose accordingly while downloading)&lt;/p&gt;

&lt;p&gt;*&lt;strong&gt;&lt;em&gt;Installing Python on Windows 10 Guide:&lt;/em&gt;&lt;/strong&gt;*&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Search on Browser: python install on windows&lt;/li&gt;
&lt;li&gt;Select website: &lt;a href="https://www.python.org/downloads/" rel="noopener noreferrer"&gt;https://www.python.org/downloads/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Go to Downloads Section: 
Choose Windows OS&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Always download Stable release eg: " Python 3.12.4 - June 6, 2024 "&lt;br&gt;
      This Python 3.13.0b3 "b" indicates its beta version means its still in testing.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Python 3.12.4 Download Windows installer (64-bit) [ .exe file gets downloaded]&lt;/li&gt;
&lt;li&gt;Then double click .exe file to install python&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;****Shows 2 options:&lt;/p&gt;

&lt;p&gt;i. Install Now&lt;/p&gt;

&lt;p&gt;ii. Customize installation&lt;/p&gt;

&lt;p&gt;****Check boxes with 2 option below: (You can tick this check boxes)&lt;/p&gt;

&lt;p&gt;i. Use admin privileges when installing py.exe&lt;br&gt;
ii. Admin python.exe to PATH&lt;/p&gt;

&lt;p&gt;*&lt;strong&gt;&lt;em&gt;Then Choose Customize installation and all checkboxes can be selected. (as per your requirement)&lt;br&gt;
Click Next&lt;br&gt;
*&lt;/em&gt;&lt;/strong&gt; Shows Advanced Options&lt;br&gt;
i. Install Python 3.12 for all users&lt;br&gt;
ii. Associate file with Python (requires the 'py" launcher)&lt;br&gt;
iii. Create shortcuts for installed applications&lt;br&gt;
iv. Precompile standard library&lt;br&gt;
v. Download debugging symbols&lt;br&gt;
vi. Download debug binaries(requires VS 2017 or later)&lt;/p&gt;

&lt;p&gt;**Check box can be selected from i to v&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Customize install location&lt;br&gt;
By default it shows C.// drive (Keep as it is)&lt;br&gt;
**&lt;/strong&gt;Then it asks for Do you want to install on your device Click Yes. Shows Setup Progress&lt;br&gt;
6.After successful installation it shows "Setup was successful".&lt;br&gt;&lt;br&gt;
  Then click Close.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;To verify python installed on machine or not:&lt;/strong&gt;&lt;br&gt;
Go to cmd / Command Prompt on your device&lt;/p&gt;

&lt;p&gt;Once opened it shows as eg: C:\Users\Dev&amp;gt;&lt;br&gt;
i. Type:   python --version (example  C:\Users\Dev&amp;gt;python --version)&lt;br&gt;
ii. Shows output as below:&lt;br&gt;
Python 3.12.4&lt;br&gt;
If the above current version you installed shows its successfully installed.&lt;br&gt;
To check for py shell&lt;br&gt;
i. Type py (example  C:\Users\Dev&amp;gt;py)&lt;br&gt;
ii. Shows as below:&lt;br&gt;
Python 3.12.4 (tags/v3.12.4:8e8a4ba, Jun  6 2024, 19:30:16) [MSC v.1940 64 bit (AMD64)] on win32&lt;br&gt;
Type "help", "copyright", "credits" or "license" for more information.&lt;/p&gt;

&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;iii. Then type what you need, example:&lt;br&gt;
print("My first blog about python installation on windows....")&lt;br&gt;
My first blog about python installation on windows.... &lt;/p&gt;
&lt;/blockquote&gt;


&lt;/blockquote&gt;
&lt;br&gt;
&lt;/blockquote&gt;

&lt;p&gt;***&lt;em&gt;**To check IDLE: Search on your device idle&lt;/em&gt;*&lt;/p&gt;

&lt;p&gt;(IDLE is Python's Integrated Development and Learning Environment, its free open source from python itself)&lt;br&gt;
Shows IDLE (Python 3.12.4 APP) Open it new window gets opened as IDLE Shell 3.12.4&lt;/p&gt;

&lt;p&gt;As below:&lt;br&gt;
Python 3.12.4 (tags/v3.12.4:8e8a4ba, Jun  6 2024, 19:30:16) [MSC v.1940 64 bit (AMD64)] on win32&lt;br&gt;
Type "help", "copyright", "credits" or "license()" for more information.&lt;/p&gt;

&lt;p&gt;Here also you can type and check:&lt;/p&gt;

&lt;p&gt;print("My first blog about python installation on windows....")&lt;br&gt;
It shows as output below: &lt;br&gt;
My first blog about python installation on windows....&lt;/p&gt;

&lt;p&gt;You can also save your file: &lt;/p&gt;

&lt;p&gt;File--&amp;gt;Save As and save with file name eg: demo. Automatically it gets saved as demo.py&lt;/p&gt;

&lt;p&gt;You can open the file Notepad/Notepad++ editor to check it.&lt;/p&gt;

&lt;p&gt;Thank you!&lt;/p&gt;

</description>
      <category>python</category>
      <category>installation</category>
    </item>
  </channel>
</rss>
