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
- Host: GitHub
- URL: https://github.com/manuparra/oc2dm
- Owner: manuparra
- License: mit
- Created: 2017-04-27T15:08:18.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-31T14:00:48.000Z (almost 9 years ago)
- Last Synced: 2024-12-27T20:33:44.909Z (over 1 year ago)
- Topics: algorithms, cloud-computing, data-mining, machine-learning, services-definition
- Language: Python
- Homepage: https://dicits.ugr.es/occml
- Size: 2.01 MB
- Stars: 3
- Watchers: 6
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 :)