我对Linux和WSL非常陌生,所以我不太确定我的设置是否正确。Exoplasim是一个在Linux上运行的气候模型模拟代码,但是他们说它与Windows的WSL是兼容的。所列的要求是:。
numpy
scipy
matplotlib(只需要额外的实用程序)。
GNU C (gcc/g++) 和 Fortran (gfortran) 编译器 (用于 Python 工具)
(可选择)你喜欢的其他编译器对模型本身的用途
(可选择)这些编译器的MPI库
netCDF4(可选)
h5py (可选)
The link for it is here https://pypi.org/project/exoplasim/
我已经用WSL安装了Ubuntu,并且用sudo apt-get安装了gcc、g++和gfortran。我还成功安装了pip、numpy、scipy、matplotlib和jupyter。当我运行文档中给出的示例代码时,整个事情就中断了。
示例代码。
import exoplasim as exo
mymodel = exo.Model(workdir="mymodel_testrun",modelname="mymodel",resolution="T21",layers=10,ncpus=8)
mymodel.configure()
mymodel.exportcfg()
mymodel.run(years=100,crashifbroken=True)
mymodel.finalize("mymodel_output")