This repository holds the source code for the AutoMATES documentation and several component pipelines.
For documentation: https://ml4ai.github.io/automates
For all operating systems, the first step of the installation process is to clone the AutoMATES repository.
- Create a new Python virtualenv
- Activate your new Python virtualenv
- Install Graphviz as defined below
- Run
pip install -e .
from the root of the AutoMATES directory
- Use the command:
sudo apt-get install graphviz libgraphviz-dev pkg-config
- Use the command:
brew install graphviz
- Install PyGraphviz to your virtualenv with:
pip install --install-option="--include-path=/usr/local/include/" --install-option="--library-path=/usr/local/lib" pygraphviz
- Download and install Anaconda
- Edit the
PYTHONPATH
variable inenvironment.yml
to be your local path to your checkout of the AutoMATES repo - Run
conda env create --file environment.yml
from the root of the AutoMATES directory