mit-d3m

MIT tools to work with D3M datasets.


Keywords
mit-d3m
License
MIT
Install
pip install mit-d3m==0.2.2.dev0

Documentation

“mit-d3m” An open source project from Data to AI Lab at MIT.

Development Status Travis PyPi Shield

mit-d3m

Overview

MIT tools to work with D3M datasets.

Install

Requirements

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-venv

Afterwards, you have to execute this command to have the virtualenv activated:

source mit-d3m-venv/bin/activate

Remember about executing it every time you start a new console to work on mit-d3m!

Install with pip

After creating the virtualenv and activating it, we recommend using pip in order to install mit-d3m:

pip install mit-d3m

This will pull and install the latest stable release from PyPi.

Install from source

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 git@github.com:MLBazaar/mit-d3m.git
cd mit-d3m
git checkout stable
make install

For development, you can use make install-develop instead in order to install all the required dependencies for testing and code linting.