Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 446 Bytes

File metadata and controls

11 lines (10 loc) · 446 Bytes

MML

This repo contains the learnings from the Coursera Specialization Course - Mathematics for Machine Learning All the setup was done on a Mac laptop. If you are using Windows some commands might not work as is and you would have to find a replacement

Setup Steps

1. Initiate the Virtual Environment named venv:

python3 -m venv venv

2. Activte the Virtual Environment:

source venv/bin/activate

3. Install Numpy:

pip3 install numpy