It contains tutorial of various MLOps algorithm. This will promarily focus on deployment. So, in this we will learn end-to-end ML lifecycle pipeline. Will update it as soon as I learn something new. Happy Learning.
// install virtualenv
$ python3 -m pip install --user virtualenv
// create environment
$ python3 -m venv myenv
// activate environment
$ source myenv/bin/activate
// install dependencies from requirements.txt
$ pip install -r requirements.txt
// deactivate environment
$ deactivate