我的Python腳本開始與 from __future__ import division
在RI做 library(rPython)
python.load("myscript.py")
我得到 File "", line 2 SyntaxError: from future imports must occur at the beginning of the file
我嘗試使用rPython包傳遞一些參數到python代碼並返回結果。但由於某種原因,我得到奇怪的編碼從我的Python代碼。也許有人有一些提示指出我。 這裏是我的簡單的代碼來測試: require(rPython)
#pass the test word 'audiention' (in ukrainian)
word<-"аудієнція"
python.assign("input",
rpytester.r一個.py文件,幷包含以下行 library(rPython)
python.load("model.py")
python.call("printme", "asdf")
model.py包含以下行: def printme(str):
"This prints a passed string into this function"
return
我試圖用install.packages("rPython")在windows下安裝rPython。但是,我收到一個包不存在的錯誤。 Warning in install.packages :
package ‘rPython’ is not available (for R version 3.2.5)
在包我只能找到這個安裝文檔: WINDOWS SYSTEMS
=======