在conda环境(source activate)中,如何通过make install进入环境库目录(lib、bin等)?而不是系统目录?
请注意,我不想要与conda-build相关的答案。
发布于 2021-09-01 20:51:08
使用-C (更改目录)参数告诉make使用不同的目录:
make -C $CONDA_PREFIX/lib install从手册中:
-C dir, --directory=dir
Change to directory dir before reading the makefiles or doing anything else.https://stackoverflow.com/questions/47840427
复制相似问题