【发布时间】:2022-01-23 18:44:54
【问题描述】:
我使用pip install rdkit-pypi 来安装rdkit 库。但是当我输入import rdkit as rd时,它会显示错误
ImportError: DLL load failed while importing rdBase: The specified module was not found.
我使用 Anaconda 作为基础。使用 rdkit 库应该怎么做?
【问题讨论】:
我使用pip install rdkit-pypi 来安装rdkit 库。但是当我输入import rdkit as rd时,它会显示错误
ImportError: DLL load failed while importing rdBase: The specified module was not found.
我使用 Anaconda 作为基础。使用 rdkit 库应该怎么做?
【问题讨论】:
我以前遇到过这个问题。看了一会才知道python 3.8.0以上的版本是不兼容rdkit的。即使您需要将您的基础更改为 rdkit。 我通过首先使用低于 3.8.0 的 python 版本降级 anaconda 版本来解决这个问题。 然后我设置我的 rdkit 环境。
In this image u can see my python version and I'm not getting any error
【讨论】: