racket - Remove a package from within DrRacket -
in command line, can add , remove packages raco pkg
. in drracket, however, package management handled through either file -> install package
(if installing packages), or file -> package manager
(if want install package, list of installed packages, etc.).
unfortunately, dialog not appear have tag removing package. possible remove package drracket, or must done with:
raco pkg remove <package-name>
obviously, can indirectly within racket using find-exe
:
#lang racket (require compiler/find-exe) (system* "-l" "raco" "remove" "<package-name>")
but seems clunky. there better way remove packages drracket/
you can remove package going to: file -> package manager
, , click on second tab (currently installed
) see list of of installed packages. select package want remove, , find remove button in bottom right corner. if click button package removed system.
here picture of list of installed packages remove button highlighted.
Comments
Post a Comment