Skip to content
Elisa Ribeiro edited this page Feb 3, 2022 · 23 revisions

Welcome to the MLOps Project wiki!

## Troubleshooting / FAQ

1. Prerequisites

Here are some tools that you will need to install before building this project.

  • Ubuntu/Debian/Mint:

    The GNU make automates the install process of this package following rules defined on a Makefile. In Linux-based OS's is likely that you already have make installed.

    ~$ make --version
    
    GNU Make 4.2.1
    Built for x86_64-pc-Linux-gnu
    Copyright (C) 1988-2016 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law.

    if you don't have, install using:

    sudo apt-get install build-essential

    You also will need to install Python 3.8.10 or higher.

    sudo apt-get install python3
    

    or download and install,

    https://www.python.org/downloads/
    

    you can also use pyenv to manage different Python versions. Without messing with your development environment, pyenv allows you to taste different types of python just by typing a command in the terminal.


2. Contributing

To contribute to this project, you will need to download Git and have an account on Github.

😵 If you are new to Github or this is the first project you contribute, follow this tutorial

😎 If you already familiar with GitHub and know how to contribute to open source projects, follow these links to learn more about the project's structure and [how to contribute to the MLops Project]


See also Getting Started, Writing Good Commit Messages

Clone this wiki locally