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.

enter image description here


Comments

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -