-
Notifications
You must be signed in to change notification settings - Fork 28
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
clean install of conda python 3.7 rdkit rdkit for postgres on ubuntu 18.04 has boost version issues #79
Comments
This is a bug related to the rdkit-conda packaging, not the RDKit. |
I also have an unsatisfiable error 😞 were you able to solve it @dpwildboar, if so how??? Here is my command and output:
I see a bunch of similar issues on the web. But I am new at using the Ubuntu app on Windows 10, and various versions of python and R. While trying to correct my python version, I already crashed a lot of things and I have a lot of missing packages. Somehow I made it to a working python version 3.9.5, and I don't want to lose it again. So I wanted to ask the professionals here 😁 Here is the information of possibly related things' versions:
I hope I will be able to install RDKit at the end. Thanks in advance!!! 😊🙏🏻 |
Please install the rdkit from conda-forge, not the RDKit channel. We are no longer keeping the release builds on the rdkit channel up to date. |
Okay, it worked! Thank you very much! 😊🙏🏻 |
Greg is the Postgres rdkit install moving to forge also?
… On Oct 1, 2021, at 7:58 AM, Greg Landrum ***@***.***> wrote:
Please install the rdkit from conda-forge, not the RDKit channel. We are no longer keeping the release builds on the rdkit channel up to date.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#79 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AACTCGYKMAVWCP5ZUS45HCLUEXEATANCNFSM4IJSF6JQ>.
Triage notifications on the go with GitHub Mobile for iOS <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> or Android <https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
not yet, and unfortunately I haven't been particularly good about keeping those builds up-to-date either |
demonstration of issue
psql --port=15432 my-rdkit-db
psql (11.2)
Type "help" for help.
my-rdkit-db=# create extension rdkit;
ERROR: could not load library "/home/username/anaconda3/envs/my-rdkit/lib/rdkit.so": libboost_regex.so.1.65.1: cannot open shared object file: No such file or directory
versions of relevant things:
conda --version
conda 4.7.10
python --version
Python 3.7.3
uname -a
Linux iapetus 4.15.0-55-generic rdkit/rdkit#60-Ubuntu SMP Tue Jul 2 18:22:20 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
boost is installed however a more recent version:
cd ~/anaconda3/envs/my-rdkit/lib
ls libboost_regex.so*
libboost_regex.so libboost_regex.so.1.67.0
this workaround worked several weeks ago on another clean install.
try installing a prior version:
conda install -y boost=1.65.1 py-boost=1.65.1
Collecting package metadata (current_repodata.json): done
Solving environment: failed with current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed
Initial quick solve with frozen env failed. Unfreezing env and trying again.
Solving environment: failed
UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:
If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Your current python version
is (python=3.7). Note that conda will not change your python version to a different minor version
unless you explicitly specify that.
The following specifications were found to be incompatible with each other:
Package setuptools conflicts for:
snip
a masive list of stuff **
The text was updated successfully, but these errors were encountered: