我花了很多时间尝试在 ubuntu 11.10 上构建 RDKit
Python 2.7 (rdkit_201106+dfsg.orig.tar.gz) 使用预编译版本
提升 1.49。而我失败得很惨。
重复出现的错误在 CMake GUI 中:
CMake Error at CMakeLists.txt:11 (install):
install FILES given no DESTINATION!
CMake Error at CMakeLists.txt:14 (add_pytest):
Unknown CMake command "add_pytest".
请问有什么帮助吗?
解决了之前的问题,但现在我在运行 python 时遇到这个错误,即使我按照安装过程安装了 rdkit:
from rdkit import Chem
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named rdkit
最佳答案
确保您设置了环境变量:
(您可能需要使用您拥有的路径来修复路径):在 mac 上使用 bash:
export RDBASE=/usr/local/share/RDKit
export PYTHONPATH=$PYTHONPATH:/usr/local/lib/python2.7/site-packages
您可能希望将这些行添加到 bash 脚本中以自动化该过程。
关于python - 无法在 ubuntu 11.10 中安装 rdkit,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11191946/