We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7f862f commit 8852aceCopy full SHA for 8852ace
src/main/java/ai/nets/samj/install/SamEnvManagerAbstract.java
@@ -77,7 +77,9 @@ public abstract class SamEnvManagerAbstract {
77
/**
78
* Default directory where micromamba is installed and where all the environments are created
79
*/
80
- final static public String DEFAULT_DIR = new File("appose_x86_64").getAbsolutePath();
+ final static public String DEFAULT_DIR = new File("appose_"
81
+ + ((!PlatformDetection.isMacOS() || !PlatformDetection.isUsingRosseta()) ? PlatformDetection.getArch()
82
+ : PlatformDetection.ARCH_ARM64 )).getAbsolutePath();
83
84
85
public abstract boolean checkEverythingInstalled();
0 commit comments