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

Merge branch 'master' of https://github.com/mooch443/trex

parents 25f9db5f 62a1f826
No related branches found
No related tags found
No related merge requests found
...@@ -122,8 +122,8 @@ file::Path conda_environment_path() { ...@@ -122,8 +122,8 @@ file::Path conda_environment_path() {
home = file::Path(home).remove_filename().str(); home = file::Path(home).remove_filename().str();
#endif #endif
if(home != "CONDA_PREFIX" && home != "" && home != compiled_path) { if(home == "CONDA_PREFIX" || home == "" || home == compiled_path) {
Debug("Reset conda prefix '%S' / '%S'", &home, &compiled_path); Debug("Reset conda prefix '%S' / '%S'", &home, &compiled_path);
auto conda_prefix = getenv("CONDA_PREFIX"); auto conda_prefix = getenv("CONDA_PREFIX");
if(conda_prefix) { if(conda_prefix) {
......
...@@ -17,11 +17,11 @@ TRex can track 256 individuals in real-time, or up to 128 with all fancy feature ...@@ -17,11 +17,11 @@ TRex can track 256 individuals in real-time, or up to 128 with all fancy feature
Create a new virtual conda environment on macOS/Windows, using: Create a new virtual conda environment on macOS/Windows, using:
``` ```
conda create -n tracking -c trexing trex # macOS, Windows conda create -n tracking -c trexing trex # macOS, Windows
``` ```
or, add the `conda-forge` channel for Linux: or, add the `conda-forge` channel for Linux:
``` ```
conda create -n tracking -c conda-forge -c trexing trex # Linux conda create -n tracking -c main -c conda-forge -c trexing trex # Linux
``` ```
If you want compatibility with the Basler API (or other things with licensing/portability issues), please If you want compatibility with the Basler API (or other things with licensing/portability issues), please
...@@ -36,10 +36,6 @@ If you have any issues running the software please consult the documentation fir ...@@ -36,10 +36,6 @@ If you have any issues running the software please consult the documentation fir
and if this does not solve your problem, please file an issue using the [issue tracker](https://github.com/mooch443/trex/issues) here on github. and if this does not solve your problem, please file an issue using the [issue tracker](https://github.com/mooch443/trex/issues) here on github.
If you experience problems with [Tensorflow](https://tensorflow.org), such as installing CUDA or cuDNN dependencies, then please direct issues to those development teams. If you experience problems with [Tensorflow](https://tensorflow.org), such as installing CUDA or cuDNN dependencies, then please direct issues to those development teams.
# Example data
See https://trex.run/docs/examples.html.
# License # License
Released under the GPLv3 License (see [LICENSE](https://github.com/mooch443/trex/blob/master/LICENSE)). Released under the GPLv3 License (see [LICENSE](https://github.com/mooch443/trex/blob/master/LICENSE)).
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