While in a conda environment (source activate
), how can I make install
into the environment library directories (lib
, bin
, etc.) and not the system directories?
Note that I do NOT want answers related to conda-build
.
While in a conda environment (source activate
), how can I make install
into the environment library directories (lib
, bin
, etc.) and not the system directories?
Note that I do NOT want answers related to conda-build
.
Use the -C
(change directory) argument to tell make
to use a different directory:
make -C $CONDA_PREFIX/lib install
From the manual:
-C dir, --directory=dir
Change to directory dir before reading the makefiles or doing anything else.