With this command line I can verify which packages are in use or loaded. List of loaded in Julia
filter((x) -> typeof(eval(x)) <: Module && x ≠ :Main, names(Main,imported=true))
What command exists to unload one or more packages; Without having to start Julia again and load the packages that I want to continue using?