This repository contains a Jupyter Notebook designed to verify that your Python development environment is properly configured for data science coursework.
Before running this notebook, ensure you have the following installed:
- Python 3.x (Python 3.8 or higher recommended)
- VS Code (Visual Studio Code)
- Jupyter extension for VS Code
The notebook tests the following Python libraries:
pandas- Data manipulation and analysisnumpy- Numerical computingmatplotlib- Data visualization
-
Clone or download this repository to your local machine
-
Open the folder in VS Code
- Launch VS Code
- Go to File → Open Folder
- Select the
Unit2-Tech-Setupfolder
-
Install required libraries (if not already installed)
Open a terminal in VS Code (Terminal → New Terminal) and run:
pip install pandas numpy matplotlib
-
Install the Jupyter extension (if not already installed)
- Open the Extensions view (⇧⌘X on macOS or Ctrl+Shift+X on Windows/Linux)
- Search for "Jupyter"
- Install the official Jupyter extension by Microsoft
-
Open the notebook
- In VS Code's Explorer, click on
test_notebook_setup.ipynb
- In VS Code's Explorer, click on
-
Select a Python kernel
- When the notebook opens, click "Select Kernel" in the top-right corner
- Choose "Python Environments..."
- Select your Python installation
-
Run the cells
- Click the
▶️ (play) button next to each cell to run it individually, OR - Use "Run All" from the top toolbar to execute all cells at once
- Click the
-
Verify success
If your environment is properly configured, you should see:
- ✓ Python version information
- ✓ Basic arithmetic calculations
- ✓ Library version numbers for pandas, numpy, and matplotlib
- ✓ A sample student scores DataFrame
- ✓ A bar chart visualization
If you see errors about missing modules, install them using:
pip install pandas numpy matplotlib- Try restarting VS Code
- Ensure Python is properly installed and accessible from the command line
- Verify the Jupyter extension is installed and enabled
- Make sure you have Python installed on your system
- Reload VS Code window (⇧⌘P → "Developer: Reload Window")
- Python Installation - Verifies Python is working and displays version info
- Basic Operations - Tests fundamental Python calculations
- Essential Libraries - Confirms pandas, numpy, and matplotlib are installed
- DataFrame Creation - Tests pandas functionality with sample data
- Data Visualization - Creates a bar chart to verify matplotlib works