Skip to content

Instantly share code, notes, and snippets.

@kayomarz
Created August 14, 2023 03:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kayomarz/65e0d124f008b222ddf317e9f920c37f to your computer and use it in GitHub Desktop.
Save kayomarz/65e0d124f008b222ddf317e9f920c37f to your computer and use it in GitHub Desktop.
Uninstall / Remove all software installed via quicklisp
;;; Start lisp, for example run sbcl.
;;; $ sbcl
;;; First uninstall all systems.
;;; ref: https://github.com/quicklisp/quicklisp-client/issues/147#issuecomment-1631778086
(mapc #'ql:uninstall (mapcar #'ql-dist:short-description (ql-dist:installed-systems t)))
;;; To be able to use slime, we install the slime helper
(ql:quickload "quicklisp-slime-helper")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment