I'm trying to set up an emacs ocaml environment following the Real World Ocaml instructions here, but when I start utop I get the error:
No such package: sexplib.syntax - required by `core.syntax'
If I run: ocamlfind list | grep sexp
from the command-line I get :
ppx_sexp_conv (version: 113.24.00)
ppx_sexp_conv.expander (version: 113.24.00)
ppx_sexp_conv.expander.for_ppx_deriving (version: n/a)
ppx_sexp_message (version: 113.24.00)
ppx_sexp_value (version: 113.24.00)
sexplib (version: 113.24.00)
sexplib.num (version: 113.24.00)
sexplib.unix (version: 113.24.00)
which to my novice eyes suggests that sexplib.syntax doesn't exist.
Does anyone know how to fix this ?