Reputation: 8064
Ideally, I would like to get something equivalent of SessionInfo()
in R, that lists the version of the R together with the list of all currently loaded libraries together with their versions.
I miss a similar functionality in Julia.
Upvotes: 4
Views: 1347
Reputation: 10422
I think Pkg should have what you need:
using Pkg
Pkg.status()
Or using the Julia 1.0.0 Package Manager, one could:
# Press the `]` key to access the package manager, then:
(v1.0) pkg> status
# Press backspace key to exit back to REPL.
Upvotes: 6