-
Notifications
You must be signed in to change notification settings - Fork 12
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
CMake Path Issue when Using RDKit Conda Install #10
Comments
@kheyer We too had some headaches getting shapeit to compile in conda envs. Thankfully your comment saved us a little time debugging. We also needed to install Here is a copy and paste of my terminal if it is fruitful for anyone out there:
|
Doing this today required a small edit - changing the Boost include directory:
|
In case it helps anyone currently the above methods runs into issues not finding headers in the current conda-forge version of rdkit. The rdkit channel works using the following recipe (note: this pins the version of Python to 3.7):
|
Hi!
I got these warnings:
and then this error message:
Any clue why this is happening? |
Thanks for making this available through RDKit!
When I compiled the code, I ran into issues with CMake not finding RDKit libs. I believe this is because I have RDKit installed through Anaconda. Specifically I found
${RDKIT_LIBRARIES}
was not set and CMake was picking up a Python install outside of the Anaconda installation I was trying to use. The solution was to add more compile flags:After adding the additional flags, I was able to successfully compile the code.
The text was updated successfully, but these errors were encountered: