Installation
ClimaCore.jl is a registered Julia package. You can install the latest version of ClimaCore.jl through the built-in package manager. Press ] in the Julia REPL command prompt and
julia> ]
(v1.10) pkg> add ClimaCore
(v1.10) pkg> instantiateThis will install the latest tagged release of the package.
If you want the most recent developer's version of the package then
julia> ]
(v1.10) pkg> add ClimaCore#main
(v1.10) pkg> instantiateYou can run the tests via the package manager by:
julia> ]
(v1.10) pkg> test ClimaCoreRunning examples
We have a selection of examples, found within the examples/ directory to demonstrate different use of our library. Each example directory contains a Project.toml
To build with the latest ClimaCore.jl release:
> cd examples/
> julia --project -e 'using Pkg; Pkg.instantiate()'
> julia --project example_file_name.jlIf you wish to run a local modified version of ClimaCore.jl then try the following (starting from the ClimaCore.jl package root)
> cd examples/
> julia --project
> julia> ]
> (examples)> rm ClimaCore.jl
> (examples)> dev ../
> (examples)> instantiatefollowed by
> julia --project example_file_name.jlAttribution and Credits
These instructions and how-to guides are heavily based on the excellent EnsembleKalmanProcesses.jl Installation Instructions