Closed ThomasBucaioni closed 3 years ago
@ThomasBucaioni Can you paste the contents of your sbclrc file? (~/.sbclrc
). I'd guess that you installed quicklisp but didn't arrange for it to be loaded on start-up every time you start SBCL.
If you don't find
#-quicklisp
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))
add them. (Those should lines should have been added when you ran ql:add-to-init-file
)
Indeed, I have no ~/.sbclrc
... But even adding these lines, sbcl still returns that ql doesn't exist: since I never ran ql:add-to-init-file
, there are probably more things that I missed.
By the way, I just saw there's a channel on Gitter. Maybe it's more suitable to chat there?
Gitter would work fine. As would #lisp@freenode as the issue is installing quicklisp. But you can follow the instructions at https://www.quicklisp.org/beta/#installation
$ sbcl --load quicklisp.lisp
* (quicklisp-quickstart:install)
* (ql:add-to-init-file)
It's one year I'm saying to myself I need to learn Lisp. Today is the day...
Sbcl answers:
Any idea what went wrong? (Quicklisp is installed though...)