I tried installing OpenBabel via conda install -c conda-forge openbabel, and it seemed to succeed. I'm able to find the obabel binary and all of the tests in meta.yaml run just fine. However, when I try to run import pybel in python (either a Jupyter notebook or the REPL), I get
ModuleNotFoundError: No module named 'pybel'
It looks like the python bindings aren't built or just not linked to the local library. Is there a quick fix I can do for this?
I tried installing OpenBabel via
conda install -c conda-forge openbabel
, and it seemed to succeed. I'm able to find theobabel
binary and all of the tests inmeta.yaml
run just fine. However, when I try to runimport pybel
in python (either a Jupyter notebook or the REPL), I getIt looks like the python bindings aren't built or just not linked to the local library. Is there a quick fix I can do for this?