在mac上一直装不上isce,感谢lijun99的帮助,终于装上了,这是他的isce安装流程:Mac isce2安装
我下面照搬了一下他的流程,只是最后的编译的地方有所修改,主要是mdx不要安装,就可以编译成功。再次感谢lijun99的帮助。
1. 安装xcode
sudo rm -rf /Library/Developer/CommandLineTools/
xcode-select --install
2. 将conda改为mamba因为安装软件包速度更快
~/miniconda3/bin/conda install mamba
~/miniconda3/bin/mamba init zsh # or bash
source ~/.zshrc # not needed when you open a new Terminal
3. 安装gfortran
brew install gfortran
/opt/homebrew/bin/gfortran --version # check
4.创建isce2环境
mamba create -n isce2
mamba activate isce2
<