@brettcannon @SebRaschka I'm with Sebastian on this, the difference between conda envs vs venvs vs {the other tools} is thin.
I'm 95% sure you can get away without activating conda envs in most cases (if you do not have any activate scripts or extra env exports). You lose some of the self-description that you _are_ using a conda installed Python, but 🤷
I somewhat regularly do `/path/to/conda/env/bin/python blah` and have not had any issues (but now I'm a bit worried....)
I remember some early discussion about those start up scripts / envs with Aaron Meurer arguing they were a Bad Idea ™️ .
Seems he was right (and I was wrong).
@SebRaschka @brettcannon The problem is conda packages can install on activate scripts and ENVS exports so while not strictly needed for _Python_ to work (modulo the zlib bug), if you are a tool like vscode it will break a lot of users expectations that their conda installed custom-what ever well be run!
I can totally see people shipping things like ENVS for access / configuration in a conda package that exports them on activate (because I, ah, tried to do that..my coworker talked me out of it)