you cannot do this explicitly in conda, where the principle is that envs are completely separate.
but the current conda default conda is to allow global packages of user sites all to see from within the environment, as mentioned in this question . therefore, the default behavior will allow you to do what you need, but there is no way to allow only “some specific” global packages.
this behavior raised one or two questions. to avoid this, export PYTHONNOUSERSITE=1 to source activate <your env> . note that the developers plan to change the default behavior to set PYTHONNOUSERSITE=1 to 4.4.0 (from the second linked link).
source share