So, I am trying to add RDKit to my project in PyCharm. I have found that if you are using interpreter /usr/bin/python2.7
PyCharm will try to install stuff using the pip
. While, RDKit requires conda
. I have tried to change the interpreter to conda
, but RDKit
is either not on the list or it can’t open the URL with the repo. Does anyone know how to fix that?
By the way, is it possible while keeping the interpreter /usr/bin/python2.7
to make it use anything else (not pip
), while installing stuff?
Advertisement
Answer
I have finally found how to do that and it’s not difficult at all:
- Install conda;
- Install RDKit, following these instructions
- Go to the preferences in PyCharm either like this:
or like this (you need a wrench):
In the project interpreter select: ~/anaconda/envs/my-rdkit-env/bin/python
Make sure you add or update the corresponding python paths to PATH, otherwise it wouldn’t work.
TESTS:
- Tried to install fiona – success, so there’s no impact on the installation;
- Tried the simple code:
print('HELLO WORLD!')
– worked Tried rdkit code
from rdkit import Chem m = Chem.MolFromSmiles('Cc1ccccc1') print(m)
worked, the log: <rdkit.Chem.rdchem.Mol object at 0x101125080>