Hi there.
I have a very basic question regarding installing modules with opam and using them in ocaml.
In my environment installing the module with opam does not mean that it can be used in ocaml.
For example after installing eigen I cannot simply make open Eigen.
I am getting:
Error: Unbound module Eigen
Now when specifying the module directory explicitly with
ocaml -I $(opam var lib)/eigen test.ml
I am getting:
Error: Reference to undefined global `Eigen’
Actually the $(opam var lib) is pointing to:
/home/florian/.opam/4.06.0/lib
Is my installation broken or what is necessary to open the modules flawlessly?