Python कैसे Install करें? Windows में Python Installation Step-by-Step
Python कैसे install करें? इस आसान Hindi guide में Windows computer या laptop में Python download और installation की पूरी प्रक्रिया, Add Python to PATH, Python version check, IDLE, पहला Python program और common installation problems समझें। RBSE Class 12 Computer Science और Python सीखने वाले beginners के लिए complete step-by-step Python Installation Guide.
Python Installation क्या है?
Python programming शुरू करने के लिए आपके computer में Python interpreter और आवश्यक tools का होना जरूरी है। Python को Windows पर install करने के बाद आप Python programs लिख और run कर सकते हैं।
अगर आप RBSE Class 12 Computer Science में Python पढ़ रहे हैं या programming की शुरुआत कर रहे हैं, तो Python installation आपकी पहली practical steps में से एक है।
Python Install करने से पहले क्या चाहिए?
- Windows Laptop या Desktop Computer
- Internet connection
- Python की official website से installer
- Python install करने के लिए आवश्यक permissions
Step 1: Python की Official Website खोलें
Python download करने के लिए हमेशा official Python website का उपयोग करना बेहतर है।
Official Website: Python.org
Website खोलने के बाद Downloads section में जाकर Windows के लिए उपलब्ध Python installer चुनें।
Step 2: Python Download करें
Python की official download page पर Windows के लिए उपलब्ध installer दिखाई देगा। अपने computer के लिए उपयुक्त current stable Python version download करें।
Step 3: Python Installer खोलें
Download पूरा होने के बाद downloaded Python installer file को open करें।
Installation window में आपको Python install करने के विकल्प दिखाई देंगे।
Step 4: Add Python to PATH
PATH में Python को उपलब्ध कराने से Windows Command Prompt या अन्य command-line tools से Python command चलाना आसान हो सकता है।
Step 5: Install Python
अब installation option पर क्लिक करें और installer को Python की files computer में install करने दें।
Installation complete होने तक कुछ समय प्रतीक्षा करें।
यदि installation सफलतापूर्वक पूरी हो जाती है, तो अब आपके computer में Python का उपयोग किया जा सकता है।
Step 6: Python Install हुआ या नहीं कैसे Check करें?
Python installation verify करने के लिए Windows में Command Prompt खोलें।
Command Prompt में यह command लिखें:
python --version
कुछ systems में Python launcher उपलब्ध होने पर आप यह command भी चला सकते हैं:
py --version
यदि Python सही तरीके से उपलब्ध है तो command Python का installed version दिखाएगी।
Step 7: Python Interpreter Check करें
Command Prompt में:
python
चलाने पर Python interactive interpreter खुल सकता है।
अब एक simple calculation करके देख सकते हैं:
10 + 20
Python expression का result screen पर दिखाई देगा।
Step 8: Python से पहला Program चलाएँ
अब Python का एक बहुत simple program देखते हैं।
print("Hello, Python!")
Output:
Hello, Python!
यहाँ print() function का उपयोग text को output के रूप में display करने के लिए किया गया है।
Python IDLE क्या है?
Python installation के साथ IDLE उपलब्ध हो सकता है। IDLE Python programs लिखने और उन्हें run करने के लिए उपयोग किया जाने वाला development environment है।
Beginners के लिए IDLE Python programming की शुरुआत करने का एक सरल तरीका हो सकता है।
Python Program की .py File कैसे बनाएँ?
- एक text/code editor खोलें।
- Python code लिखें।
- File को .py extension के साथ save करें।
- इसके बाद Python interpreter से program run करें।
उदाहरण:
print("Welcome to RBSE Python")
Python Installation में आने वाली सामान्य समस्याएँ
1. 'python' is not recognized
यदि Command Prompt में Python command काम नहीं करती, तो PATH configuration, installation और Windows environment settings को check करें।
2. Python का गलत version दिखाई दे रहा है
यदि computer में Python के multiple installations हैं, तो यह check करें कि command किस Python installation को access कर रही है।
3. Installation में समस्या आ रही है
Installer को official Python website से दोबारा download करके installation प्रक्रिया carefully check करें।
RBSE Class 12 के लिए Important Points
- Python एक high-level programming language है।
- Python programs को Python interpreter execute करता है।
- Python program files सामान्यतः
.pyextension का उपयोग करती हैं। print()output display करने के लिए उपयोग किया जाता है।- Python version को command line से check किया जा सकता है।
Python Installation के बाद क्या सीखें?
Python install करने के बाद अब programming के basic concepts को क्रम से सीखना शुरू करें।
- Python Variables
- Python Data Types
- Python Input & Output
- Python Operators
- Python If-Else
- Python Loops
- Python Functions
- Python Programs
Frequently Asked Questions
क्या Python free है?
Python official Python Software Foundation के तहत open-source software के रूप में उपलब्ध है और इसे official website से प्राप्त किया जा सकता है।
Windows में Python कैसे install करें?
Python की official website से Windows installer download करें, installer चलाएँ और installation instructions follow करें। PATH option को भी ध्यान से देखें।
Python install होने के बाद कैसे पता करें?
Command Prompt खोलकर python --version या उपलब्ध होने पर py --version command चला सकते हैं।
Python सीखने के लिए coding experience जरूरी है?
नहीं। Python programming को beginners भी basic concepts से शुरू कर सकते हैं। नियमित practice और छोटे programs लिखना सीखने में मदद करता है।
आगे पढ़ें
Python की official documentation और download information के लिए: