How can I get a list of imported/used packages of a Julia session?
Pkg.status()
list all installed packages. I'm interested in the ones that that were imported/loaded via using ...
or import ...
It seems that whos()
contains the relevant information (the names and whether it is a module or not). Can the output of whos()
be captured in a variable?