I realise I can create a new environment from a yml with conda env create -f environment.yml
(from conda docs).
However in my case, I have an environment already setup with a ton of things installed and setup just the way I like and need it. Now I'd like to install a new package which has a bunch of dependencies. From what I can see there are no conflicts with my current env. Is it possible to somehow import this yml into my current environment? I couldn't find any info on this on the docs or the web (they all point back to creating a new env from the yml).
I realise I can export my current environment as a yml, do a merge with the new yml, and then create a new environment with the merged file, but that seems a bit convoluted for something which I think would be a relatively common request.