
- License: MIT
- Development Status: Pre-Alpha
- Documentation: https://mlbazaar.github.io/mit-d3m
- Homepage: https://github.com/MLBazaar/mit-d3m
MIT tools to work with D3M datasets.
mit-d3m has been developed and tested on Python 3.5, 3.6 and 3.7
Also, although it is not strictly required, the usage of a virtualenv is highly recommended in order to avoid interfering with other software installed in the system where mit-d3m is run.
These are the minimum commands needed to create a virtualenv using python3.6 for mit-d3m:
pip install virtualenv
virtualenv -p $(which python3.6) mit-d3m-venvAfterwards, you have to execute this command to have the virtualenv activated:
source mit-d3m-venv/bin/activateRemember about executing it every time you start a new console to work on mit-d3m!
After creating the virtualenv and activating it, we recommend using pip in order to install mit-d3m:
pip install mit-d3mThis will pull and install the latest stable release from PyPi.
Alternatively, with your virtualenv activated, you can clone the repository and install it from
source by running make install on the stable branch:
git clone [email protected]:MLBazaar/mit-d3m.git
cd mit-d3m
git checkout stable
make installFor development, you can use make install-develop instead in order to install all
the required dependencies for testing and code linting.