Trying to understand the relationship between LD_LIBRARY_PATH and conda/mamba environments #514
Unanswered
mpizenberg
asked this question in
Q&A
Replies: 1 comment 5 replies
-
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using a library, that has some looking for
libpython3.10.so.1.0
. This is a python frontend for a C library, so not sure if that plays a role here. The issue I have is that I only install python in dedicated environments which means I don't have anything in myLD_LIBRARY_PATH
leading to such a shared library.I can fix that issue by adding
$HOME/miniforge3/envs/my_env/lib
toLD_LIBRARY_PATH
but now I'm wondering the following.libpython3.10.so.1.0
mamba activate my_env
does not add$HOME/miniforge3/my_env/lib
toLD_LIBRARY_PATH
?LD_LIBRARY_PATH
everytime I need it. And I don't want to add it to my config files such that it would be there even when I've not activated that environment.Beta Was this translation helpful? Give feedback.
All reactions