Install NumPy and Verify
Create a virtual environment and install NumPy using pip (recommended for beginners):
python -m venv numpy-env
source numpy-env/bin/activate # On Windows: numpy-env\Scripts\activate
pip install numpy jupyter
Alternatively, use conda:
conda create -n numpy-env
conda activate numpy-env
conda install numpy
Verify installation in Python:
import numpy as np
print(np.__version__) # Should print e.g., 2.4.0
Launch Jupyter Notebook:
Create a new notebook and test the import.