rpython

    0熱度

    1回答

    我正在嘗試安裝rPython,但我得到了有關scrdir安裝的以下錯誤。 scr文件(makevars.win)以及configure.win文件具有相同的路徑。 我使用的路徑是: #!/bin/sh echo PKG_LIBS=-LD:/Programs/Python27/libs -lpython27 echo PKG_CFLAGS=-I"D:/Programs/Python27/incl

    0熱度

    1回答

    我的[R版本3.4.1是,Python版本3.5.2是,和操作系統是Ubuntu的16.04.2 我已經設置RPYTHON_PYTHON_VERSION = 3.5安裝rPython,當這是我的默認Python版本的rPython。 ♥ python.exec('import sys') ♥ python.exec('print(sys.version)') 3.5.2 (default, N

    7熱度

    2回答

    我有一個python腳本,它需要一些5個參數(一個文件名,3個int值和2個浮點值)。我需要從R中調用這個python腳本。我該怎麼做。我試圖用rPython,但它不容許我傳遞參數 library("rPython") python.load("python scriptname") 我不知道如何來傳遞參數 命令行,我跑我python腳本,如: python scriptname filen

    4熱度

    1回答

    我的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

    2熱度

    1回答

    我一直在修補pypy源代碼樹一週,現在想出了下面的問題 - 是否有任何方法來構建一個rpython程序作爲共享對象,它公開了它的一些功能(比如函數列表),換句話說,我希望這個函數可以通過共享對象導入從python腳本調用。 當我嘗試建立我的程序像這樣: python rpython --shared -O2 some_program.py libmyprogram-c.so實際獲取生成,從CP

    2熱度

    1回答

    我想通過ctypes將一些rpython代碼嵌入到python腳本中。 RPython程序相當簡單: # check.py from rpython.rlib.entrypoint import entrypoint_highlevel from rpython.rtyper.lltypesystem import rffi @entrypoint_highlevel(key='main'

    1熱度

    1回答

    我嘗試使用rPython包傳遞一些參數到python代碼並返回結果。但由於某種原因,我得到奇怪的編碼從我的Python代碼。也許有人有一些提示指出我。 這裏是我的簡單的代碼來測試: require(rPython) #pass the test word 'audiention' (in ukrainian) word<-"аудієнція" python.assign("input",

    2熱度

    1回答

    如何使用包rPython從R輸入參數到Python? 下面是一個天真的嘗試 在script.py:爲 require(rPython) text = "Hello World" python.load("script.py", message=text) Error in python.load("script.py", message = text) : unused arg

    1熱度

    1回答

    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

    3熱度

    1回答

    我試圖用install.packages("rPython")在windows下安裝rPython。但是,我收到一個包不存在的錯誤。 Warning in install.packages : package ‘rPython’ is not available (for R version 3.2.5) 在包我只能找到這個安裝文檔: WINDOWS SYSTEMS =======