This is rPython for Windows. If you are on Linux/Mac, you can install it from CRAN.
install.packages("devtools")
library(devtools)
rPython
(not rPython-win
).configure.win
file inside the directory. By default, it contains the linesecho 'PKG_LIBS=-LC:/python27/libs -lpython27' > src/makevars.win
echo 'PKG_CFLAGS=-I"C:/Python27/include"' >> src/makevars.win
and you should edit them to point to the path where you installed Python. In the default configuration it is assumed that the Python version is 2.7 and that it is installed in C:/Python27
. Change it according to your Python installation.
install("path/to/rPython")
. For instance, I run
install("C:/Users/carlos/Downloads/rPython")
rPython on Windows is mostly experimental and has only been tested on one Windows box. Please, contact the maintainer (me) if you find any issues on your platform.