Installation

Install the package from the Julia package registry:

using Pkg
Pkg.add("LowLevelFEM")

Load the package:

using LowLevelFEM

LowLevelFEM re-exports gmsh via gmsh_jll, so no separate Gmsh.jl package is required for standard workflows.

Verify Setup

using LowLevelFEM

gmsh.initialize()
gmsh.finalize()

If this runs without error, your setup is ready.