Skip to content
This repository has been archived by the owner on Jun 19, 2020. It is now read-only.
/ dax Public archive
forked from VUIIS/dax

Distributed Automation for XNAT

License

Notifications You must be signed in to change notification settings

vuiiscci/dax

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!

About

Distributed Automation for XNAT

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 61.9%
  • Java 24.2%
  • JavaScript 13.5%
  • Other 0.4%