I accidentally installed the Example package into my base (@v1.11) Julia environment. Is there a way to reset the environment and remove this package?
Not sure this fully qualifies as resetting, but you can just use ] rm Example
or using Pkg; Pkg.rm("Example")
to remove the package.
1 Like
Thank you. I installed the package with ] dev Example
so it also cloned a Git repo to ~/.julia/dev/
. I’m guessing I can just delete that manually?
Yeah, that’s fine.
1 Like