I am attempting to install Geiser (for Racket) on Ubuntu.
I have run:
sudo apt-get install geiser
and have appended to my .emacs file the line:
(load-file "~/lisp/geiser/elisp/geiser.el")
(I double checked the path.)
I restart Emacs, use M-x run-geiser
and received the following error:
compile: unbound identifier in module in: ~a
at modules.rkt:99:60
I attempted to build from source but I after running
sudo make install
within the directory, I receive the error that make install
is not a target. (I retrieved the source via Git).
If I run ./autogen.sh
to generate the target, I receive: autoreconf: not found
.
Am I missing a step or doing something incorrectly?