|trex| supports all major platforms. There is an easy way to install |trex| using Anaconda, by creating a new virtual environment (here named ``tracking``, which you can replace)::
conda create -n tracking -c trexing trex # macOS, Windows
conda create -n tracking -c trexing trex # macOS, Windows
conda create -n tracking -c main -c conda-forge -c trexing trex # Linux
The down-side is that pre-built binaries are compiled with fewer optimzations and features than a manually compiled one (due to compatibility and licensing issues) and thus are slightly slower =(. For example, the conda version does not offer support for Basler cameras. If you need to use |grabs| with machine vision cameras, or need as much speed as possible/the newest version, please consider compiling the software yourself.
...
...
@@ -50,8 +50,8 @@ This runs ``conda build .``, which builds the program according to all the setti
After compilation was successful, |trex| can be installed using::
conda create -n tracking -c local trex # macOS, Windows
conda create -n tracking -c conda-forge -c local trex # Linux
conda create -n tracking -c local trex # macOS, Windows
conda create -n tracking -c main -c conda-forge -c local trex # Linux
Notice there is a ``-c local``, instead of the ``-c trexing`` from the first section.