Skip to content
Snippets Groups Projects
Commit f18f5b7b authored by Tristan Walter's avatar Tristan Walter
Browse files

documentation

parent a92fde1e
No related branches found
No related tags found
No related merge requests found
if [ "$(uname)" == "Linux" ]; then
conda build . -c conda-forge
conda build . -c main -c conda-forge
else
conda build .
fi
......@@ -14,8 +14,8 @@ The easy way
|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 conda-forge -c trexing trex # Linux
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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment