Quicklisp is a library manager for Common Lisp
1
vote
2answers
42 views
Using iterate after installing with Quicklisp
When I load the "iterate" package using Quicklisp ( (ql:quickload "iterate") ), it seems to load fine but none of the functions really work. When I enter (iterate:iter (for i from 0 to 10) (collect ...
1
vote
0answers
24 views
I'm Getting an Error Message when Trying to Install CFFI-LIBFFI with (ql:quickload “cffi-libffi”) in EMACS/SLIME/SBCL
This is the error message:
External process exited with code 1.
Command was: "c:/msys/1.0/bin/gcc.exe" "-m32" "-I/Program Files (x86)/Steel Bank Common Lisp/1.1.4/site/cffi/" "-o" "D:\Program Files ...
1
vote
0answers
54 views
Where can I find a Book\Tutorial that will teach me what I need to know to install any Common Lisp Library I choose?
If we can build a knowledge repository here for Lisp Library Install Help...It could help out a lot of Lisp Noobs and Advanced Noobs(Me)...I'll keep posting back as I learn so My experience can help ...
1
vote
0answers
54 views
I'm getting an error message I get when attempting to Install CL-PNG in Emacs using Quicklisp
I hope the answers I get can help others in installing Lisp Packages in general. I installed libpng with the setup.exe (at this link: ...
1
vote
2answers
85 views
In Common Lisp how to determine packages contained by a system
Everytime I install a system via Quicklisp, i always find myself searching for the name of essential package, which an average user will be interested because it exports the 'final product' API to be ...
4
votes
1answer
123 views
loading quicklisp in a program
What's the correct way to load quicklisp at the start of my program? I'm currently copy/pasting in the block that quicklisp inserted into my .eclrc, e.g.
;;; quicklisp
(let ((quicklisp-init ...
2
votes
2answers
94 views
How does one avoid loading multiple asdf files for a common lisp project?
While working through Peter Seibel's book Practical Common Lisp, I've had some difficulty understanding how to handle the Common Lisp package system in conjunction with Emacs's SLIME and quicklisp. ...
1
vote
1answer
60 views
There is an error using CMUCL
When staring cmucl with quicklisp, i get the following error:
Error in KERNEL::UNDEFINED-SYMBOL-ERROR-HANDLER: the function GENERATE-CRC32-TABLE is undefined.
[Condition of type UNDEFINED-FUNCTION]
...
1
vote
0answers
61 views
quicklisp-client:quickload is undefined
I installed quicklisp in slimv and quickload doesn't seem to be working.
CL-USER> (ql:quickload "hunchentoot")
The function QUICKLISP-CLIENT:QUICKLOAD is undefined.
apropos works so I'm not sure ...
0
votes
0answers
84 views
Is there a way to use quicklisp with GCL?
Installation/(load "/home/inaimathi/quicklisp/setup.lisp") both fail. This still-open task from 2011 tells me it's probably not getting fixed.
Is there a workaround?
2
votes
1answer
40 views
landoflisp function uedges->dot error or can't understand
http://landoflisp.com/graph-util.lisp
(defun uedges->dot (edges);draw undirected graphs
(maplist (lambda (lst)
(mapc (lambda (edge)
(unless (assoc (car edge) (cdr lst))
...
1
vote
1answer
128 views
Test if quicklisp has already been installed in clisp
I'm working on a project in Common Lisp which makes use of a package installed with quickload. I'm making a bash script in the root of the project which tests if the necessary programs are installed, ...
2
votes
1answer
229 views
Commonqt Not Working Using Clozure CL on OS X Lion
I wanted to use Commonqt using Clozure CL on OS X Lion.
But it was not working...
Commonqt
Commonqt is a Common Lisp binding to the smoke library for Qt.
...
3
votes
1answer
332 views
Quicklisp Cannot Install LIBSSL for Hunchentoot
I installed CLisp today on my Win7 PC. Please don't criticize my environment choices, but if this particular setup has flaws relating to Quicklisp and Hunchentoot feel free to point them out. I ...
5
votes
3answers
385 views
How to add a local project to asdf configured by quicklisp
I want to add a local project to the known projects by asdf, but due to the fact that asdf was installed and configured by quicklisp and the *central-registry* points to ...
1
vote
1answer
547 views
How to use packages installed by quicklisp?
I've installed the CL-PNG package using quicklisp.
(ql:quicklisp 'png)
Now I want to define my own package which depends on the CL-PNG package. Like so:
(defpackage :FOO
(:use :CL :PNG)
...
4
votes
4answers
388 views
How do I get quicklisp to load rfc2388 in slime?
I'm trying to load hunchentoot via quicklisp in slime, and getting the following error:
READ error during COMPILE-FILE:
:ASCII stream decoding error on
#<SB-SYS:FD-STREAM
for "file ...
2
votes
2answers
178 views
How to use install package into system directory for SBCL by QuickLisp?
I'm using quicklisp as the package management tool for SBCL.
However, sometimes I found it's not very convenient to install a package to the HOME directory of current user by ql:quickload. (For ...
0
votes
1answer
68 views
storing the package names returned by ql:system-apropos into a variable
I'm attempting to save the output of (ql:system-apropos "regex") to a variable by using multiple-value-bind, but I only the nil. However, it seems that this command only prints text to REPL and does ...
1
vote
1answer
188 views
LispWorks on Windows 7 won't load Quicklisp
I'm using LispWorks Personal Edition and have only been able to load Quicklisp by loading the file rather than through the initialization file, .lispworks, which LispWorks is supposed to find in my ...
5
votes
1answer
144 views
Issue of quicklisp with clisp on Windows 7
I installed quicklisp/slime/clisp on windows 7.
When I started slime with M-x slime, I got this error message.
I could enter 'continue' to start the clisp/slime, but this message pops up whenever I ...
3
votes
1answer
791 views
Proper way of defining packages using asdf:defsystem and quickproject
I'm a Lisp beginner trying to understand how to properly use Lisp package system while learning LTK for GUI programming, using SBCL 1.0.55.0.debian and Limp 0.3.4 (and Debian Wheezy if that matters). ...
5
votes
4answers
623 views
Where should a Quicklisp QUICKLOAD go in my source? Nowhere?
Let's say I build an application on top of net.aserve and bordeaux-threads. My package declaration might look like this:
(defpackage :my-package
(:use :cl :net.aserve :bordeaux-threads)
(:export ...
8
votes
2answers
756 views
How to use quicklisp when CL program is invoked as a shell script?
I am currently have a small program in Common Lisp, which I want to run as a shell script. I am using the SBCL and perfectly fine with this so will prefer to stay on this platform. :)
I am aware ...
2
votes
2answers
344 views
How to remove a system which was created with quicklisp quickproject?
I made a project with quickproject:make-project in directory "~/projects/{name}/".
I wasn't happy how it turned out and wanted to start over, so I renamed the directory to "~/projects/{name}-old/" ...
0
votes
2answers
290 views
Install “hunchentoot” error?
I want to install hunchentoot on my freebsd box, but quicklisp reports error:
(ql:quickload "hunchentoot")
To load "hunchentoot":
Load 3 ASDF systems:
rfc2388 trivial-backtrace usocket
Install 15 ...
0
votes
2answers
140 views
Why does quicklisp need “root” privilege?
The root user can install quicklisp successfully. Howvever the ordinary user cannot.
I do not know why. Could anyone here shed a light on me?
1
vote
1answer
241 views
SBCL load error for clsql-mysql from quicklisp for version clsql-20110829
For SBCL 1.0.45, using quicklisp to load clsql-mysql, I get an error about "no symbol", which appears to cause the interface to fail to load. Specifically, the error is:
[package clsql-mysql]
...
1
vote
1answer
248 views
Quicklisp loads library but is nowhere to be found in *features*
Today I installed cl-html-parse with Quicklisp but when I load it the library is nowhere to be found in the features list, what's going on?
I thought that it may have been a bug with Quicklisp so I ...
3
votes
3answers
373 views
Unable to load sdl-gfx in quicklisp
I've been installing lispbuilder-sdl family with quicklisp and encountered error in sdl-gfx:
CL-USER> (ql:quickload "lispbuilder-sdl-gfx")
To load "lispbuilder-sdl-gfx": ...
5
votes
2answers
249 views
Suppress “loading” output in Quicklisp
Is there a way to have quicklisp load a library without sending:
To load "drakma":
Load 1 ASDF system:
drakma
; Loading "drakma"
To standard out? I've tried adding :verbose nil and :explain ...
0
votes
1answer
325 views
Getting variable foo is unbound trying to use a quick project tutorial
I've followed the instructions here: http://xach.livejournal.com/278047.html and gotten them to work. I called the project test, so I have a test.lisp file that looks like :
;;;; test.lisp
...
3
votes
2answers
540 views
Common Lisp package for parsing invalid HTML?
As a learning exercise, I'm writing a web scraper in Common Lisp. The (rough) plan is:
Use Quicklisp to manage dependencies
Use Drakma to load the pages
Parse the pages with xmls
I've just run ...
4
votes
1answer
628 views
Is there a way to get the CLISP compiled with dynamic FFI support on Mac OS?
I use clisp 2.48 (2009-07-28) on Mac OS X 10.6.4. I downloaded the clisp with 'sudo port install clisp'.
After installing quick lisp, I installed some packages, and most of them are OK.
However, ...
8
votes
1answer
267 views
Are there easy way of installing lisp library such as rubygem(ruby) or easy_install(python)?
I find easy_install extremely useful for programming with Python, and the same as rubygem with Ruby.
Does Lisp have similar feature? I understand that there are many Lisp implementations (clisp, ...
