7

我正在尝试使用reticulate包在 R 中导入 python 模块。该模块可以在这里找到。我克隆了存储库并运行python setup.py install它成功运行。如果我打开一个 python shell,我可以导入debot. 但是,当我尝试在 RStudio 中导入它时,出现以下错误:

dbot=import("debot")
Error in py_module_import(module, convert = convert) : 
  ImportError: No module named debot

我在 macOS Sierra 版本 10.12.6 上并通过 Anaconda 安装了 python 3.6。我还尝试将 python 的路径指定为:

path_to_python <- "/anaconda/bin/python3.6"
use_python(path_to_python)

当我从终端运行 python 时,我得到:

Python 3.6.1 |Anaconda 4.4.0 (x86_64)| (default, May 11 2017, 13:04:09) 
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

不确定python的路径是否正确。

好的,做了更多的挖掘,发现它reticulate仍然指的是我的旧版 python 2.7 python 路径,它是我的 Macbook 的默认设置。当我运行时py_config(),这就是我得到的:

python:         /usr/bin/python
libpython:      /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/config/libpython2.7.dylib
pythonhome:     /System/Library/Frameworks/Python.framework/Versions/2.7:/System/Library/Frameworks/Python.framework/Versions/2.7
version:        2.7.10 (default, Feb  7 2017, 00:08:15)  [GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.34)]

无论我尝试什么,但我无法reticulate查看使用该use_python()功能安装模块的正确路径。我确实相信这是reticulate. 任何想法我的下一步应该是什么?

4

1 回答 1

11

读完这篇我终于明白了。我认为在从reticulate包中调用任何其他函数之前,必须指定要使用的 python 路径。因此,我现在遵循的顺序是:

library(reticulate)
path_to_python <- "/anaconda/bin/python"
use_python(path_to_python)
于 2017-08-26T04:28:51.083 回答