From f2f22510abe31862caa1844288c8b16175e67f5a Mon Sep 17 00:00:00 2001 From: romainGuiet Date: Fri, 11 Oct 2024 13:05:08 +0200 Subject: [PATCH] fix default_conda_env_path for linux so it matches biop-desktop --- .../ch/epfl/biop/wrappers/cellpose/ij2commands/Cellpose.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/ch/epfl/biop/wrappers/cellpose/ij2commands/Cellpose.java b/src/main/java/ch/epfl/biop/wrappers/cellpose/ij2commands/Cellpose.java index 29140e7..ec1676d 100644 --- a/src/main/java/ch/epfl/biop/wrappers/cellpose/ij2commands/Cellpose.java +++ b/src/main/java/ch/epfl/biop/wrappers/cellpose/ij2commands/Cellpose.java @@ -32,7 +32,7 @@ public class Cellpose implements Command { static { if (IJ.isLinux()) { - default_conda_env_path = "/home/biop/conda/envs/cellpose"; // to ease setting on biop-desktop } + default_conda_env_path = "/opt/conda/envs/cellpose"; // to ease setting on biop-desktop } } else if (IJ.isWindows()) { default_conda_env_path = "C:/Users/username/.conda/envs/cellpose"; } else if (IJ.isMacOSX()) {