Created
August 14, 2023 03:57
-
-
Save kayomarz/65e0d124f008b222ddf317e9f920c37f to your computer and use it in GitHub Desktop.
Uninstall / Remove all software installed via quicklisp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; 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