Skip to content
This repository has been archived by the owner on Jun 19, 2020. It is now read-only.

Latest commit

 

History

History
70 lines (55 loc) · 1.94 KB

README.md

File metadata and controls

70 lines (55 loc) · 1.94 KB

Distributed Automation for XNAT

Install DAX

Install it with:

pip install dax

Use --upgrade to overwrite previous installation

To install current master:

sudo apt-get install -y zlib1g-dev libxft-dev
sudo apt-get install -y libjpeg-dev
sudo apt-get install libxml2-dev libxslt1-dev
sudo apt-get install libfreetype6-dev
sudo apt-get install libffi-dev
sudo apt-get install libssl-dev
sudo apt-get install libatlas-base-dev gfortran
pip install https://github.com/VUIIS/dax/archive/master.zip --upgrade

or in a docker:

#
# This sets up a base dax docker image
#
FROM ubuntu:14.04
# Install updates, pip and dax
RUN \
apt-get update && \
apt-get -y install python-pip libxft-dev && \
apt-get -y install libxml2-dev libxslt1-dev python-dev zlib1g-dev && \
apt-get -y install zlib1g-dev && \
apt-get -y install libjpeg-dev && \
apt-get -y install libxml2-dev libxslt1-dev && \
apt-get -y install libfreetype6-dev && \
apt-get -y install libffi-dev && \
apt-get -y install libssl-dev && \
apt-get -y install libatlas-base-dev gfortran git && \
pip install https://github.com/VUIIS/dax/archive/master.zip --upgrade

#Set to bash
CMD ["bash"]

or a specific branch:

pip install https://github.com/VUIIS/dax/archive/branch_name.zip --upgrade

pip install git+https://github.com/VUIIS/dax.git@branch_name --upgrade

WIKI

The wiki is accessible up top or by clicking here.

Docs

Documentation Status

Build

Build Status

Spiders

All of our piplines are available on NITRC. Come join our team!