Quicklisp
This is my dream tool: an extremely convenient lisp library management tool.
Quick lisp released a public beta version a week ago. It's a great deal to try today.
To put it simply, quicklisp is a library Installation tool similar to Apt-Get on Linux. You only need one command to install a library and fix the dependent library by yourself. More importantly, it maintains a library of more than 300 software packages.
The installation is simple. Download:
WgetHttp://beta.quicklisp.org/quicklisp.lisp
Load it in sbcl: (load "quicklisp. LISP ")
Installation:
(Quicklisp-Quickstart: Install)
Add to the sbcl Startup file:
(QL: add-to-init-file)
Install a Library:
(QL: quickload "vecto ")
--------------------------------
The following two macros are provided: loadlib and listlib, which allow you to conveniently use ASDF.
(Require 'asdf)
(Defmacro loadlib (name)
'(ASDF: OOS 'asdf: Load-op, name ))
(Defmacro listlib (name)
'(Do-external-symbols (S, name) (print s )))
(Defun load-modules (& rest modules)
(Dolist (M modules) (loadlib m )))
-----------------