- Google Colab
- Miniconda installation
Up until today I have used RDKit in Google Colab using the following Miniconda installation:
!wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
!chmod +x Miniconda3-latest-Linux-x86_64.sh
!time bash ./Miniconda3-latest-Linux-x86_64.sh -b -f -p /usr/local
!time conda install -q -y -c conda-forge rdkit
import sys
sys.path.append('/usr/local/lib/python3.7/site-packages/')
But now I keep getting the following error: ModuleNotFoundError: No module named 'rdkit'
I have tried installing RDKit with the full distribution of Anaconda as well, but no results so far. Is there any way I can fix this issue?
Thank you and apologies for the trivial question!
Up until today I have used RDKit in Google Colab using the following Miniconda installation:
But now I keep getting the following error:
ModuleNotFoundError: No module named 'rdkit'I have tried installing RDKit with the full distribution of Anaconda as well, but no results so far. Is there any way I can fix this issue?
Thank you and apologies for the trivial question!