Skip to content

Commit

Permalink
fix default_conda_env_path for linux so it matches biop-desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
romainGuiet committed Oct 11, 2024
1 parent 93572a0 commit f2f2251
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down

0 comments on commit f2f2251

Please sign in to comment.