xaa*_*aav 10 installation makefile conda
虽然在畅达环境(source activate),我怎么能make install到环境中库目录(lib,bin,等),而不是系统目录?
请注意,我不想要与conda-build.
使用-C(更改目录)参数来告诉make使用不同的目录:
make -C $CONDA_PREFIX/lib install
Run Code Online (Sandbox Code Playgroud)
从手册中:
-C dir, --directory=dir
Change to directory dir before reading the makefiles or doing anything else.
Run Code Online (Sandbox Code Playgroud)