Quicklisp as the package management of Common Lisp, it brings great convenience to CL development. Write down common commands for forgetting.
Load
(Ql:add-to-init-file)
。 Upgrade Quicklisp itself
(ql:update-client)
。 Update system
(ql:update-dist "Quicklisp")
。 Find System
(ql:system-apropos "vector")
。 Loading/Installing software
(ql:quickload "Quicklisp-slime-helper")
。 Unloading download software
(Ql-dist:uninstall (Ql-dist:release "Babel"))
(Ql-dist:clean (ql-dist:dist "Quicklisp"))
。 View installed software
(Ql-dist:installed-releases (ql-dist:dist "Quicklisp"))
(Ql:where-is-system "Cl-ppcre")
(ql:register-local-projects)
;:d Ist-url can used to specify the initial dist version to use at installation time. Valid URLs can obtained from a existing QUICKLISP installation by evaluating one of the new functions (Ql:dist-url "Qu Icklisp ") or (ql:available-dist-versions" Quicklisp ")
;: Client-url can used to specify the initial client version to use at installation time. Valid URLs can obtained from a existing QUICKLISP installation by evaluating one of the new functions (Ql:client-url) or (Ql:available-client-versions)
Quicklisp Common Commands