1

我正在尝试在 RStudio 中使用 rPython 运行张量流,而 rPython 使用的 python 版本与我终端中的版本不同。

您如何更改 rPython 使用的版本?

4

1 回答 1

1

一种方法是重新安装 rPython-package 并指定要使用的 python 版本:

# Lets assume it is already connected to python 3.5.3
library(rPython)                                                                                                                                                                                                                                                     
python.exec("import sys")                                                                                                                                                                                                                                            
python.exec("print (sys.version)")                                                                                                                                                                                                                                   
# 3.5.3 (default, Jan 19 2017, 14:11:04)                                                                                                                                                                                                                                 
# [GCC 6.3.0 20170118]

# Now lets connect it instead to python 2.7.13                                                                                                                                                                                                                                                   
detach("package:rPython", unload=TRUE)                                                                                                                                                                                                                               
install.packages("rPython",lib= "/home/userid/R/x86_64-pc-linux-gnu-library/3.4", configure.vars= "RPYTHON_PYTHON_VERSION=2")
# omitted install reporting of rPython for space #
library(rPython)                                                                                                                                                                                                                                                     
python.exec("import sys")                                                                                                                                                                                                                                            
python.exec("print (sys.version)")                                                                                                                                                                                                                                   
# 2.7.13 (default, Jan 19 2017, 14:48:08)                                                                                                                                                                                                                                
# [GCC 6.3.0 20170118]                   
于 2017-08-01T17:29:29.790 回答