This is more of a pex question but is there a way ...
# general
a
This is more of a pex question but is there a way to get a virtual environment created from a pex to use dependencies from the interpreter it symlinks? I thought this was what
inherit_path
would do but it does not seem to have any effect. Alternatively, is there a way to install packages in venv compiled virtual environment after the compile step? I'm getting
Defaulting to user installation because normal site-packages is not writeable
.
Also the reason
inherit_path
is not working is almost certainly due to the fact that the interpreter I'm trying to use is packaged by conda-forge
Figured it out, I needed the
--pip
flag on my
venv --compile
call