I \'m unable to run rpy2 in python.
with this code
import rpy2.robjects as robjects
Here\'s the full exceptions:
R
For an instant and temporary solution, you can add the following code before importing rpy2:
import os os.environ['R_HOME'] = 'C:/program files/R-3.3.1'
One thing worth noting is that you should use backslash instead of slash in the path.