Installation

Stable release

To install Tractography Meta-Pipeline Command Line Tool (TRAMPOLINO), run this command in your terminal:

$ pip install trampolino

This is the preferred method to install Tractography Meta-Pipeline Command Line Tool (TRAMPOLINO), as it will always install the most recent stable release. Note that TRAMPOLINO is developed in Python 3, so if your system still has both Python 2 and 3, you probably should be running:

$ pip3 install trampolino

If you don’t have pip installed, this Python installation guide can guide you through the process.

From sources

The sources for Tractography Meta-Pipeline Command Line Tool (TRAMPOLINO) can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git://github.com/matteomancini/trampolino

Or download the tarball:

$ curl  -OL https://github.com/matteomancini/trampolino/tarball/master

Once you have a copy of the source, you can install it with:

$ python setup.py install

Once again, in case of a system with both Python 2 and 3, the command becomes:

$ python3 setup.py install