Windows 7 Environment Setup - Python, R, mySQL

2011-02-24 Thread grobs456
I am following along with this tutorial/post: http://www.walkerjeff.com/2011/02/python-to-r-via-mysql-on-windows-7-x64/ I am visualizing trying to setup some type of real world data/ interactions and stumbled upon this article. I am also on a 64bit Windows 7 machine. I am rusty in a sense as I ha

Re: Running Scripts vs Interactive mode

2011-02-24 Thread grobs456
On Feb 24, 11:32 am, Dave Angel wrote: > On 01/-10/-28163 02:59 PM, grobs456 wrote: > > > > > #I set my system environment variables to: > > > VARIABLE           VALUE > > PYTHON_HOME                c:\python27\python.exe > > PATH                       ...

Re: Running Scripts vs Interactive mode

2011-02-24 Thread grobs456
c:\dev\python>python HelloWorld.py 'python' is not recognized as an internal or external command, operable program or batch file. #I then tried this for a success!: c:\dev\python>c:\python27\python.exe HelloWorld.py Hello WOrld! c:\dev\python>python HelloWorld.py 'python' is not recognized as an

Running Scripts vs Interactive mode

2011-02-23 Thread grobs456
Hi, I am trying to work through the tutorial at: http://docs.python.org/tutorial/ The issue I am facing is with regards to the discussion about "Invoking the Interpreter" and "Executable Python Scripts". It was rather hazy in my opinion. see: http://docs.python.org/tutorial/interpreter.html I r