How to Install Python and Jupyter notebook on Windows Machine
Installing Python on a Windows machine is straightforward! Here’s a step-by-step guide to get you started:
Download Python Installer:
Go to the Official python page : python
Navigate to the "Downloads" section and choose the latest Python release for Windows.
Run the Installer:
Once the installer is downloaded, double-click it to run.
On the setup screen, ensure that you check the box that says "Add Python to PATH" before proceeding. This will make it easier to run Python from the command line.
Choose Install Options:
Select either "Install Now" for default settings or "Customize Installation" if you want to configure advanced settings (like the installation directory).
Wait for Installation to Complete:
After clicking "Install," the installer will do its job and set up Python on your machine.
Verify Installation:
Open a Command Prompt (press
Win + R, typecmd, and hit Enter).Type
python --versionorpy --versionto check that Python is installed successfully. You should see the installed version number.Validate python installation:
Install a Code Editor (Optional):
While Python comes with IDLE as a basic code editor, you might want to download a more powerful editor like Visual Studio Code or PyCharm to enhance your coding experience.
- Youtube Link: How to install python and Jupyter on Windows Machine
