Instructor: Alexey Grigorev
OR
Note: You don't have to rent an instance in the cloud. You can follow the same instructions for setting up your local environment.
Code:
Recommended development environment: Linux
wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh
bash Anaconda3-2022.05-Linux-x86_64.sh
sudo apt update
Follow the instructions here:
install-using-the-repository
Set up Docker's apt repository.
# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
# Add the repository to Apt sources:
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
Install the Docker packages.
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
To run docker without sudo
:
sudo groupadd docker
sudo usermod -aG docker $USER
docker run hello-world
If you get docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post "http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/create": dial unix /var/run/docker.sock: connect: permission denied.
error, restart your VM instance, or run:
sudo dockerd
Note: If you get It is required that your private key files are NOT accessible by others. This private key will be ignored.
error, you should change permits on the downloaded file to protect your private key:
chmod 400 name-of-your-private-key-file.pem
Note: The NYC taxi data is now in parquet format, not CSV. Here's a video that explains how to read parquet data.
Links:
Links:
More information here.
Did you take notes? Add them here:
- Local MacOS envprep by Adetbekov
- Environment Setup by Ayoub
- Intro, Environment Setup, and MLOps Maturity Models by Bala
- GCP Environment Setup by Piyush
- Microsoft Azure Environment Setup by Olaide
- Environment Preparation using GCP and pyenv by Dani
- Useful links by Zioalex
- Notes by Alvaro Navas
- Cloud server setup using Deploifai (on AWS, Azure, or GCP) by 98sean98
- Notes from first lesson by Neimv
- Course preliminaries (jupyterbook) by particle1331
- Notes by Francisco Delca (environment: local ubuntu + virtualvenv)
- What is MLOps? - Non-technical intro by Lorenz
- Notes for Week1 by Bhagabat
- What is MLOps? - Storytime by Pathik Ghugare
- Module 1 Notes by Stephen Barrie
- Module 1 Notes - MacOS + Pycharm by Hongfan (Amber)
- Comprehensive guide to MLOps: Theory & Concepts for Beginners by Nithish Prabhu
- Module 1 Notes -Video 1.2 Env Prep Ec2 troubleshooting notes for remote-ssh vscode to ec2
- Ch1 notes by Marcus
- Send a PR, add your notes above this line