Questions tagged [quicklisp]

Quicklisp is a library manager for Common Lisp

Quicklisp is a library manager for Common Lisp written by Zach Beane.

Information on it, including how it can be installed, can be found on its website

161 questions
2
votes
5 answers

How to use libraries in Common Lisp?

I'm a beginner in Common Lisp and I want to use a library. I can't find a single one simple example of loading / requiring / using a module. I've installed cl-ppcre like this : $ sbcl --non-interactive --eval '(ql:quickload "cl-ppcre")' To load…
WhiteMist
  • 885
  • 4
  • 13
2
votes
2 answers

how to setup linedit support CCL in initial file?

I use quicklisp to install linedit, http://www.cliki.net/Linedit say "Should work on Lispworks and OpenMCL/CCL." how to write $HOME/.ccl-init.lisp?
number23_cn
  • 4,611
  • 26
  • 31
2
votes
2 answers

How to get a list of all dependencies withing each system provided by Quicklisp?

I know how to list all systems providing by Quicklisp (ql:system-list) And I need to get a sort of most depended systems which I want to pack for Guix. Is there any ASD or Quicklisp facility which provide that?
Hellseher
  • 286
  • 2
  • 10
2
votes
2 answers

Fail to use quicklisp with clozure-cl

While using SBCL normally I want to try CCL for some testing and installed it via homebrew on my computer. That worked fine but I fail to use quicklisp with CCL. If I try to load quicklisp's setup.lisp I get the following error message: ➜ ~…
Martin Buchmann
  • 1,161
  • 7
  • 14
2
votes
1 answer

Using quicklisp with parenscript and sigil

I would like to use some ps macros in a .parenscript file. The macros are in a library that will be loaded with quicklisp. I am using sigil to compile the .parenscript file. I have tried this at the top of the parenscript file: (lisp (progn …
BnMcGn
  • 1,440
  • 8
  • 22
2
votes
1 answer

Quicklisp's file setup.lisp does not load correctly

Hi all and thank you for reading my issue. I can't load quicklisp's file setup.lisp from the lisp console. It throws the following error: Error loading C:/quicklisp/setup.lisp at line 134 (offset 5035) THREAD "main" {1DD02175}: Debugger invoked on…
Javierdds
  • 199
  • 4
  • 14
2
votes
1 answer

Error loading `rutils` from Lispworks

I can swear this used to work earlier. CL-USER 7 > (ql:quickload 'rutils) To load "rutils": Load 1 ASDF system: rutils ; Loading "rutils" [package editor-hints.named-readtables].. ......... [package…
agam
  • 5,064
  • 6
  • 31
  • 37
2
votes
1 answer

When installing quicklisp on Windows 10, where should I put ~/.config/common-lisp/source-registry.conf.d/projects.conf for ASDF to find?

I am trying to get Common Lisp running on my Windows 10 machine and I have run into a problem with getting ASDF/(ql:quickload "...") to load a project. I generated the given project with the following command (after creating a…
ig88th
  • 29
  • 3
2
votes
0 answers

sbcl end of file: dose not get data from input stream

Hi friends I am following this method to get data from another server.This fails at (rdbms-update-database-from-rpc). Giving an error: Run sbcl : $ sbcl Install the dependencies once : * (ql:quickload '("cl-json" "cl-dbi" "drakma"…
shiv
  • 21
  • 1
2
votes
1 answer

Managing Dependencies in Common Lisp

I come to Lisp from the Python world, which essentially runs on virtualenv and pip as the way to create containers and manage dependencies. Currently, I am learning Common Lisp in more detail and wondering what its community's philosophy is on…
MadPhysicist
  • 5,401
  • 11
  • 42
  • 107
2
votes
1 answer

I can (asdf:load-system :foo), but asdf still complains that '"foo" doesn't designate a package'

Trying to finally start using asdf for my lisp doodles, I tried setting up a simple example. The files are ; contents of example.asd (asdf:defsystem "example" :name "example" :depends-on ("foo") :components ((:file "example"))) and ;…
BlenderBender
  • 524
  • 3
  • 17
2
votes
1 answer

File not found in quicklisp

I am installing cl-jupyter, there is a problem in quicklisp like this: $ sbcl --load ./cl-jupyter.lispThis is SBCL 1.3.1.debian, an implementation of ANSI Common Lisp. More information about SBCL is available at . SBCL is…
2
votes
1 answer

How to update a dependency with quicklisp?

I have updated quicklisp to the lates version CL-USER> (ql:update-all-dists) 1 dist to check. You already have the latest version of "quicklisp": 2017-06-30. NIL But this did not update the dependencies to the latest version, ex. Hunchentoot…
dbow
  • 637
  • 8
  • 18
2
votes
0 answers

Lisp disabling ASDF warning

I wrote my first SBCl Lisp program, which will be execute from the command line. I use the following command for execution: sbcl --noinform --noprint --load processfile.fasl --eval '(progn (parse_graph "infile.txt" 3 4) (sb-ext:quit))' And it works…
sdgaw erzswer
  • 2,182
  • 2
  • 26
  • 45
2
votes
1 answer

Debugging Quicklisp when the backtrace lacks information

What's your general approach when quickload fails? I guess I'd like to know the line that provoked the problem, but all I'm given is a backtrace with a reference to a bytecompiled-function. How should I proceed to determine which package, file and…
Michael Fox
  • 3,632
  • 1
  • 17
  • 27