Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.29 KB

File metadata and controls

40 lines (29 loc) · 1.29 KB

Machine Learning Introduction

These notes are based on the Udacity course.

Notes licesing badge Code licesing badge

Prerequisites

Miniconda Installation on Ubuntu

  1. Download the installation script from the official website:
wget -q https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
  1. Execute the installation script and follow the procedure:
chmod +x Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh
  1. Recreate the conda environment:
conda env create --name udacity-ml --file environments.yml

You can find more information on how to install miniconda on your system here.

TODO

  • Use rundoc to test python snippets inside markdown text;