Skip to content

EasyHybrid.jl

Integrates neural networks with mechanistic models.

EasyHybrid

Install via Julia Package Manager

EasyHybrid.jl is registered in the Julia General registry. Enter the package manager by pressing ] in the REPL and add it with a single command.

julia
julia> ]
pkg> add EasyHybrid

Install via Pkg.add

Use Julia's Pkg module directly to add EasyHybrid.jl programmatically, great for reproducible project setups.

julia
using Pkg
Pkg.add("EasyHybrid")

Install Latest from GitHub

Install directly from GitHub to get the latest unreleased version. In most cases this will match the released version.

julia
using Pkg
Pkg.add(url="https://github.com/EarthyScience/EasyHybrid.jl")
# or in the REPL
julia> ]
pkg> add EasyHybrid#main

Load EasyHybrid in Your Session

Once installed, add this line at the beginning of any Julia script or session to load EasyHybrid.jl and access all its features.

julia
using EasyHybrid