- Prerequisites
- Python 3.7 Installation
- Setting up the Environment
- Getting Started
- Verifying Python Installation
- Installing Libraries
- Exploratory Data Analysis (EDA)
- Projects
- Download Python 3.7 from python.org.
- Run the Windows x86-64 executable installer.
- During installation, ensure to:
- Add Python 3.7 to your system PATH.
- Select "Install launcher for all users" and "Add Python 3.7 to PATH."
- Complete the installation process and verify Python 3.7 installation by running:
python --version
- Open a command prompt and execute:
set PATH=%PATH%;C:\Program Files\Python3
- Edit system variables, adding
C:\Program Files\Python3
to the PATH variable. - Verify the Python version:
python --version
Ensure Python 3.7 is installed:
python --version
Install required libraries using pip:
pip install numpy pandas matplotlib seaborn plotly
After installation, close the command prompt.
Verify libraries by running commands in Python IDLE for Python 3.7.0:
import pip
import numpy
import pandas
import matplotlib
import seaborn
import plotly