Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 1.16 KB

intro-01.md

File metadata and controls

52 lines (33 loc) · 1.16 KB

MLOPS Introduction

I am running a Ubuntu 20-04 LTS, locally:

Setup the Environment

Installing Docker & Docker-compose

Docker

  1. sudo apt update

  2. sudo apt install docker.io

  3. to test it run :

    • docker run hello-world
  4. if permission add sudo

    • sudo docker run hello-world

Furthermore,to bypass the sudo:

sudo groupadd docker

sudo usermod -aG docker $USER

Docker-compose

To install docker-compse , go to github and check for latest version release:

  1. Copy the link then :
  2. change the permission adding the execution :
  • chmod +x docker-compose
  1. then add it to the path :
    • nano .bashrc
  • add this line at the end of the file :

export PATH="${HOME}/soft:${PATH}"

  • then: source .bashrc
  • to check run : which docker-compose

Installing Anaconda