Accompanying math from book Essential Math for Data Science by Thomas Nield. This repository is not affiliated with Thomas Nield, the book "Essential Math for Data Science", or O'Reilly. Repository was made for personal learning purposes.
-
Open a terminal and navigate to your project directory.
-
Create a virtual environment:
python3 -m venv .venv
-
Activate the virtual environment:
source .venv/bin/activate -
Confirm virtual environment is activated:
which python
-
Install project dependencies from a requirement file:
python -m pip install -r requirements.txt
-
Create a Jupyter kernel for this environment:
python -m ipykernel install --user --name=essential-math-for-data-science
-
Start Jupyter Notebook:
jupyter notebook
-
Open Command Prompt or PowerShell and navigate to your project directory.
-
Create a virtual environment:
python -m venv .venv -
Activate the virtual environment:
.venv\Scripts\activate -
Confirm virtual environment is activated:
where python -
Install project dependencies from a requirement file:
python -m pip install -r requirements.txt -
Create a Jupyter kernel for this environment:
python -m ipykernel install --user --name=essential-math-for-data-science -
Start Jupyter Notebook:
jupyter notebook