0

I am looking at the tutorial for installing lisp.

I am at the part on "Step by step instructions for first time users:"

I have already used subversion to get the sources. I think I now need to use lisp.

I am told to run the command:

 ../fricas/configure --with-lisp=/path/to/your/lisp --prefix=/tmp/usr

I don't know what to add as /path/to/your/lisp. To obtain lisp I simply used

sudo apt-get install clisp
sds
  • 2,643

1 Answers1

1

Your lisp is /usr/bin/clisp, you can either use it as is or detect it on the fly using which:

../fricas/configure --with-lisp=$(which clisp) --prefix=/tmp/usr

or

./configure --with-lisp=/usr/bin/clisp --prefix=/tmp/usr
sds
  • 2,643