InstallΒΆ

Note

Currently only the environment configurations for Ubuntu 17 and MacOS X are available.

  • Download and install Anaconda or Miniconda

  • Download the environment configuration file for Ubuntu 17 or for the MacOSx.

    #command to use on Ubuntu 17.10
    wget --no-check-certificate https://raw.githubusercontent.com/UmSenhorQualquer/d-track/master/environment-ubuntu17.yml
    
    #or
    
    #command to use on MacOS X
    conda install wget
    wget --no-check-certificate https://raw.githubusercontent.com/UmSenhorQualquer/d-track/master/environment-macosx.yml
    
  • Open the terminal and execute the next command to install the python environment.

    #environment to use on Ubuntu 17.10
    conda env create -f environment-ubuntu17.yml
    
    #or
    
    #environment to use on MacOS X
    conda env create -f environment-macosx.yml
    
  • Activate the environment.

    source activate d-track-environment
    
  • Clone the d-track repository.

    git clone --recursive https://github.com/UmSenhorQualquer/d-track.git
    
  • Change the current directory to the d-track folder.

    cd d-track
    
  • Run the installation script.

    python install.py