It’s useful to have an environment that’s inherited, for things like Revise.jl and OhMyREPL.jl. It’s also useful to have an environment that’s activated by default when running julia
, for quick interactive sessions.
Currently those are both the same environment: the @v1.10
shared environment is (1) activated by default AND (2) inherited in project-local environments. I suspect this sharing is not ideal, because the convenience of the default environment tempts users to install lots of things into it, which then show up as accessible in their project sessions.
Personally I have two environments: @v1.10
for Revise.jl and OhMyREPL.jl, and @main
for quick interactive sessions with heavier dependencies like Makie.jl.
I wonder if this would be a good default behavior: separate the inherited environment v1.10-inherited
from the default environment v1.10-standalone
, where julia
automatically activates v1.10-standalone
. It’s a little more complicated, but it seems less likely to cause problems.