Follow these steps to download and install Python on your computer:
Step 1: Download Python
Open your web browser and go to the official Python website: https://www.python.org.
Click on the “Downloads” tab.
The website will automatically suggest the latest version of Python for your operating system (Windows, macOS, or Linux).
Click the “Download” button to get the Python installer.
Step 2: Install Python (Windows)
Open the downloaded .exe file.
Check the box “Add Python to PATH” (important for using Python from the command line).
Click “Install Now” and wait for the installation to complete.
Once done, click “Close”.
Step 3: Verify the Installation
Open Command Prompt (CMD) or PowerShell.
Type:
python --version
or
python3 --version
If Python is installed correctly, it will display the version number (e.g., Python 3.11.4).
Step 4: Install Additional Tools (Optional)
Install pip (Python's package manager) if it's not included. Check by running:
pip --version
You can now install libraries like NumPy, Pandas, or Django using:
pip install library_name
Now you're ready to start coding in Python! 🚀
Next Video: 2. How to Download - Install Visual Studio Code 2024 | Urdu/Hindi |وی ایس کوڈ انسٹا لیشن
• 2. How to Download - Install Visual S...
00:00 Downloading Python
02:05 Start Installation