I am trying to install rpy2 on a machine running Windows 10. I have already installed R 3.4.4 (64bit) and it works fine in RGui. I then tried to pip install rpy2, but was getting an error that it couldn't find R, so I added c:\Program Files\R\R-3.4.4\bin\ to my path environment variable. Now when I do
pip install rpy2
I get a different error:
Command '('c:\PROGRA~1\R\R-34~1.4\bin\x64\R', 'CMD', 'config', '--ldflags')' returned non-zero exit status 1
The full output is given below. Any idea what I am doing wrong?
pip install rpy2
Collecting rpy2
Downloading https://files.pythonhosted.org/packages/88/f7/788e5e1587bc1ab48b5b0467f9c3a08ef5aadbd993ed835559a10e452121/rpy2-2.9.3.tar.gz (193kB)
Complete output from command python setup.py egg_info:
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-w64-mingw32/x64 (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under the terms of the
GNU General Public License versions 2 or 3.
For more information about these matters see
http://www.gnu.org/licenses/.
'sh' is not recognized as an internal or external command,
operable program or batch file.
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
c:\PROGRA~1\R\R-34~1.4\bin\x64\R CMD config --ldflags
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\py\AppData\Local\Temp\pip-build-qz4rb_4o\rpy2\setup.py", line 374, in <module>
ri_ext = getRinterface_ext()
File "C:\Users\py\AppData\Local\Temp\pip-build-qz4rb_4o\rpy2\setup.py", line 269, in getRinterface_ext
ldf = shlex.split(' '.join(rexec.cmd_config('--ldflags')))
File "C:\Users\py\AppData\Local\Temp\pip-build-qz4rb_4o\rpy2\setup.py", line 222, in cmd_config
universal_newlines = True)
File "c:\users\py\miniconda3\lib\subprocess.py", line 626, in check_output
**kwargs).stdout
File "c:\users\py\miniconda3\lib\subprocess.py", line 708, in run
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '('c:\\PROGRA~1\\R\\R-34~1.4\\bin\\x64\\R', 'CMD', 'config', '--ldflags')' returned non-zero exit status 1
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\py\AppData\Local\Temp\pip-build-qz4rb_4o\rpy2\
The output contains the error:
'sh' is not recognized as an internal or external command
but I thought it was only a warning (as there was output coming after it).
sh (Shell) is Nix specific and (naturally) doesn't exist on Win. However, if you install a port for Win, or an Nix env emulator (like Cygwin, MSYS2, ...), it might work.
Here's what [ReadTheDocs.RPy2]: Installation (which has "Compiling on Linux" and "Compiling on OS X" sections, but nothing about Win, although it mentions that it should compile successfully) states:
- There is currently no binaries or support for Microsoft Windows (more for lack of resources than anything else).
- Microsoft’s Windows - unofficial and unsupported binaries are provided by Christoph Gohlke (http://www.lfd.uci.edu/~gohlke/pythonlibs); there is otherwise currently close to no support for this platform
Adding steps that @pyguy took (from comment), in order to successfully install RPy2:
Download rpy2‑2.9.3‑cp35‑cp35m‑win_amd64.whl (or any newer version that might have been added in the meantime) from [UCI.LFD]: Unofficial Windows Binaries for Python Extension Packages (for 032bit (pc032), download the *win32.whl)
Open a Cmd window (as Administrator) in the .whl's download dir
Set R_USER env var to current username:
set R_USER=%USERNAME%
Install the .whl locally:
python -m pip install rpy2‑2.9.3‑cp35‑cp35m‑win_amd64.whl
Python's (binary) dir must be in %PATH%, or specify the full path.
Check [SO]: Installing pygraphviz on Windows 10 64-bit, Python 3.6 (@CristiFati's answer) (Shortcut section (close to the end)), or (referenced) [SO]: How to install a package for a specific Python version on Windows 10? (@CristiFati's answer) for details regarding custom .whl installation