Hi
I created my own package, myOwnLib. I made a link from /path/to/anaconda3/lib/python3.7/site-packages which point to my package, following this : Anaconda: Permanently include external packages (like in PYTHONPATH).
It works perfectly when I don't activate any environment. However, When i "conda activate" an environment, I cannot access to the package anymore and receive the message : "No module named 'myOwnLib'" I can thus link this library with doing the same action /path/to/.conda/envs/previous/lib/python3.7/site-packages/ , but it becomes redundant.
Is there a more generic way to link modules with anaconda?
Thanks in Advance
action attempted: 1) conda develop "/path/to/lib", as suggested here : How to add folder to search path for a given Anaconda environment?