rpytester.r
并包含以下几行
library(rPython)
python.load("model.py")
python.call("printme", "asdf")
model.py
包含以下行:
def printme( str ):
"This prints a passed string into this function"
return str
当我rpytester.r
通过放置执行
import pandas as pd
在第一行model.py
,r 会话崩溃并显示以下错误消息。
否则程序按预期工作。
文本格式的错误消息是:
r6034 an application has made an attempt to load the c runtime incorrectly
我已经为 python 2.7.13 和 R 版本 3.3.3 (2017-03-06) 安装了 Anaconda 2。
我看过这篇文章:嵌入式 Python 应用程序中的运行时错误 R6034
但即使删除 msvcr90.dll
,错误仍然存在。(不过,我不知道如何设置路径,因为它位于 Anaconda 2 文件夹中)。