R:在Windows下无法通过SYSTEM帐户使用网状软件包。

时间:2020-10-31 00:01:03

标签: python r windows reticulate

我试图在R脚本的Reticulate中不使用R Markdown的情况下调用Python脚本。我需要由第三方应用程序(使用SYSTEM帐户)调用R脚本,然后再调用Python脚本。基本上我想在Python中使用R变量。当我在Windows中执行登录时,它运行正常,但在Windows中由SYSTEM帐户执行时,效果却不佳。我在“ C:\ Program Files \ Python38 \ python.exe”下安装了Python。

R代码:

Sys.setenv(RETICULATE_PYTHON = "C:\\Program Files\\Python38\\python.exe")
library(reticulate)
use_python("C:\\Program Files\\Python38\\python.exe", required = T)
message <- paste("Text from R", format(Sys.Date(), "%c"), sep = " ")
py_run_file("test_script.py")

Python代码:

import logging
logging.basicConfig(filename="test_script.log", level=logging.DEBUG,format='%(levelname)s: %(asctime)s %(message)s',datefmt='%m/%d/%Y %I:%M:%S')
logging.debug(r.message)

登录后的输出:

DEBUG: 10/30/2020 08:02:10 Text from R sex out 30 00:00:00 2020

使用SYSTEM帐户运行时的输出:

DEBUG: 10/28/2020 02:28:37 <function make_python_function.<locals>.python_function at 0x00000243D21E3168>

Windows 10 R版本4.0.3 Python版本3.8.6 网状版本1.18

这是什么“ make_python_function”,以及如何使其在SYSTEM帐户下工作?感谢您提供任何信息!

0 个答案:

没有答案