I am trying to evaluate the answer here and I get the error message: "A file with name ASDF-INSTALL does not exist" when using clisp:
dsm@localhost :~$ clisp -q [1]> (require :asdf-install) *** - LOAD: A file with name ASDF-INSTALL does not exist The following restarts are available: ABORT :R1 ABORT Break 1 [2]> :r1 [3]> (quit) dsm@localhost :~$
cmucl causes a similar error:
dsm@localhost :~$ cmucl -q Warning:
But sbcl works fine:
dsm@localhost :~$ sbcl -q This is SBCL 1.0.11.debian, an implementation of ANSI Common Lisp. More information about SBCL is available at <http://www.sbcl.org/>. SBCL is free software, provided as is, with absolutely no warranty. It is mostly in the public domain; some portions are provided under BSD-style licenses. See the CREDITS and COPYING files in the distribution for more information. * (require :asdf-install) ; loading system definition from ; /usr/lib/sbcl/sb-bsd-sockets/sb-bsd-sockets.asd into
Any ideas on how to fix this? I found this post on the Internet, but using this did not work either.
source share