-
Notifications
You must be signed in to change notification settings - Fork 330
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reticulate does not care about the environment #428
Comments
Also issue #367 |
I think the answer here is that ultimately |
Aaron Lun's package |
I have an issue that is related to this, and I wonder why it's not possible to simply tell reticulate to look for those shared libraries in the conda env in question. |
reticulate does not care about the environment... sorry for the hopefully click bait title ...
Several open issues, namely, #292, #311, #338, #396, satijalab/seurat#677 are caused by python loaded by reticulate from a conda environment not finding shared libraries which would be found by python started directly from that environment. (leading to e.g.
ImportError: /usr/lib64/libstdc++.so.6: version 'CXXABI_1.3.9' not found
)With this issue I hope to initiate a discussion on:
How should and how can reticulate handle the process environment & shared library search paths?
Here is what I think to understand about it:
conda activate
wouldMy conclusion is:
use_condaenv
cannot work (without starting a separate process which it never will) and should be removed/deprecated in favor of starting the R session in the adequate conda environment (having conda manage R as well would help to handle conflicts between R and python requirements)What do you think?
The text was updated successfully, but these errors were encountered: