Use Python and Jupyter Notebook or JupyterLab for Data Science and ML projects.
- Install Python 3.8+ and ensure it is on PATH (see Install Python).
- Create a virtual environment:
python -m venv venv, then activate it (venv\Scripts\activateon Windows,source venv/bin/activateon macOS/Linux). - Install Jupyter:
pip install jupyterorpip install jupyterlab. Install project deps:pip install -r requirements.txt. - Start Jupyter:
jupyter notebookorjupyter lab. Open the project notebook (e.g..ipynb) and run cells. Ensure the kernel is set to your venv Python.
For VS Code, install the Jupyter extension and select the venv interpreter; you can run .ipynb files directly.