-
-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce env
command to manage environments
#621
Comments
At the very least: adding tab completion for |
It feels strange to me that julia manages environments in a somewhat hidden manner. It keeps a list of all active manifests (environments), as can be seen by Why not make this more transparent?
|
It seems iffy that Pkg should be able to remove environments. What should be deleted? The |
Nothing should actually be deleted. Julia should just stop keeping track of that particular environment (manifest). I.e. the manifest should be removed from the list that I see when I do |
I have this use case in mind: My collaborator sends me a project folder. I wanna check it out so I do Why can't the user tell Julia to ignore this environment again? I mean it also didn't track it automatically when I created it on my disk. Only when I did activate it at some point. |
How about
|
Looks great! |
Maybe, to avoid the confusion, the command to remove an environment from the list should be called |
What about an |
And Although I'd love to make a PR to get this merged soonish, I feel I'm not the right person for this. So hopefully someone else will give it a shot soon. I'd appreciate it! |
env
command to manage environments
Is someone working on this? I'd love to see this in 1.1 and I heard feature freeze is mid Nov. |
@fredrikekre talk at juliacon yesterday reminded me of this feature request. Someone from the audience basically wanted the To add to the list of features that go under |
I'm just adding an argument about why all of this is very useful. Just asked on Slack if there is some command exactly like Here is a reason why deleting the This is the currently best standing workaround by @fredrikekre
|
FWIW, came up on slack again (someone was looking for |
I think something like described here makes sense. |
|
I just bumped into needing/wanting this (I had 72Gb of artifacts) and making do with PkgCleanup from |
It would be nice to have a command for listing all environments. Currently the best one can do is
gc
, which will output a list at the top. Also, autocompletion for environment names when doing activate would be nice.The text was updated successfully, but these errors were encountered: