Re: [Rpy] compiling rpy2 on windows R-2.8.1

2009-01-02 Thread James Yoo
line 112 (or thereabouts) in setup.py: include_dirs = [x.lstrip('-I') for x in include_dirs] lstrip tends to be too greedy and turns "-II:\path\to\include" into ":\path\to\include"... On Fri, Jan 2, 2009 at 2:18 PM, Laurent Gautier wrote: > James Yoo wrote: > >> >> Sorry for the redundan

Re: [Rpy] compiling rpy2 on windows R-2.8.1

2009-01-02 Thread Laurent Gautier
James Yoo wrote: > > Sorry for the redundant post, but I felt that I should change the > subject header. > On Fri, Jan 2, 2009 at 11:31 AM, James Yoo > wrote: > > Hi, > > Running into a couple problems compiling rpy2 on windows. > I have R_HOME defined a

[Rpy] compiling rpy2 on windows R-2.8.1

2009-01-02 Thread James Yoo
Sorry for the redundant post, but I felt that I should change the subject header. On Fri, Jan 2, 2009 at 11:31 AM, James Yoo wrote: > Hi, > > Running into a couple problems compiling rpy2 on windows. > I have R_HOME defined and R in the system path. > > first off in setup.py, def getRinterface_ex

Re: [Rpy] rpy2 windows binary install

2009-01-02 Thread James Yoo
Hi, Running into a couple problems compiling rpy2 on windows. I have R_HOME defined and R in the system path. first off in setup.py, def getRinterface_ext: include_dirs = [x.lstrip('-I','') for x in include_dirs] is bad if your drive letter happens to be 'I', I've replaced this with x.repla