Skip to content

Commit

Permalink
Merge pull request #49 from BIOP/fix_linux_path
Browse files Browse the repository at this point in the history
Fix linux path
  • Loading branch information
NicoKiaru authored Oct 13, 2024
2 parents 93572a0 + 4210920 commit b3b70db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
public class Omnipose implements Command {
static {
if (IJ.isLinux()) {
default_conda_env_path = "/home/biop/conda/envs/omnipose"; // to ease setting on biop-desktop }
default_conda_env_path = "/opt/conda/envs/omnipose"; // to ease setting on biop-desktop }
} else if (IJ.isWindows()) {
default_conda_env_path = "C:/Users/username/.conda/envs/omnipose";
} else if (IJ.isMacOSX()) {
Expand Down

0 comments on commit b3b70db

Please sign in to comment.