An open API service indexing awesome lists of open source software.

https://github.com/manuparra/oc2dm

Open Cloud Computing Data Mining Platform
https://github.com/manuparra/oc2dm

algorithms cloud-computing data-mining machine-learning services-definition

Last synced: 7 months ago
JSON representation

Open Cloud Computing Data Mining Platform

Awesome Lists containing this project

README

          

- [1. Installation](#1-installation)

# 1. Installation

**Note:** the following commands are for Ubuntu-like distributions.

First of all we need to install pip, the Python package manager.

``sudo apt install python3-pip``

Now we need to install *pew* to manage our virtual enviroments (*venv* from now on).

``pip3 install install pew``

After this, we need to create the *venv* which will host our project:

``pew new ``

Now we are ready to install the requirements via the ``requeriments.txt`` file:

``pip3 install -r requeriments.txt``

Once *pip* finish the installation we are ready to clone the repository and start working :)