Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

rdkit installation issues with Anaconda

I am trying to get rdkit working on my Windows 7 system with Anaconda and Python 2.7. I have been following the instructions from http://www.rdkit.org/docs/Install.html

conda create -c https://conda.anaconda.org/rdkit -n my-rdkit-env rdkit
activate my-rdkit-env

I then get the following:

Deactivating environment "C:\Anaconda2"...

Activating environment "C:\Anaconda2\envs\my-rdkit-env"

However, if I then open a Jupyter notebook, and try to

import rdkit

It fails with

ImportError: No module named rdkit

Any help would be greatly appreciated!

like image 457
Crath Avatar asked May 15 '16 18:05

Crath


Video Answer


1 Answers

I had the same problem, but

conda install -c conda-forge rdkit

worked out with ease.

like image 153
banan3'14 Avatar answered Sep 28 '22 16:09

banan3'14