Importing python module in R
问题 I am trying to import a python module in R using the reticulate package. The module can be found here. I cloned the repository and ran python setup.py install which ran successfully. If I open a python shell, I'm able to import debot . However, when I try to import it in RStudio, I get the following error: dbot=import("debot") Error in py_module_import(module, convert = convert) : ImportError: No module named debot I am on macOS Sierra version 10.12.6 and installed python 3.6 through Anaconda