Re: Which python version do I use with "virtualenv"?

2009-05-08 Thread OldGrantonian
On May 7, 9:33 pm, Duncan Booth wrote: > OldGrantonian wrote: > > Where do I find the win32 extensions? > > http://www.google.com/search?q=python+win32 > > Any of the first 4 hits should help. Success :) Many thanks to all responders in this thread :) -- http://mail.python.org/mailman/listinfo/

Re: Which python version do I use with "virtualenv"?

2009-05-08 Thread OldGrantonian
On May 7, 9:33 pm, Duncan Booth wrote: > OldGrantonian wrote: > > Where do I find the win32 extensions? > > http://www.google.com/search?q=python+win32 > > Any of the first 4 hits should help. Success :) Many thanks to all responders in this thread :) -- http://mail.python.org/mailman/listinfo/

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread Duncan Booth
OldGrantonian wrote: > Where do I find the win32 extensions? http://www.google.com/search?q=python+win32 Any of the first 4 hits should help. -- http://mail.python.org/mailman/listinfo/python-list

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread OldGrantonian
On May 7, 9:03 pm, Emile van Sebille wrote: > On 5/7/2009 12:53 PM OldGrantonian said... > > > > > On May 7, 12:34 pm, Duncan Booth wrote: > >> OldGrantonian wrote: > >>> Thanks to both Steven D'Aprano and Ant :) > >  Sounds like you've downloaded the Python 2.5 version of Easy Install. > >>

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread Emile van Sebille
On 5/7/2009 12:53 PM OldGrantonian said... On May 7, 12:34 pm, Duncan Booth wrote: OldGrantonian wrote: Thanks to both Steven D'Aprano and Ant :) Sounds like you've downloaded the Python 2.5 version of Easy Install. There's no Python 2.6 version of EasyInstall :( I wonder what I've been r

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread OldGrantonian
On May 7, 12:34 pm, Duncan Booth wrote: > OldGrantonian wrote: > > Thanks to both Steven D'Aprano and Ant :) > > >>>  Sounds like you've downloaded the Python 2.5 version of Easy Install. > > > There's no Python 2.6 version of EasyInstall :( > > I wonder what I've been running then? > > > > > For

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread Diez B. Roggisch
Krishnakant wrote: > >> You are confusing virtualenv with a custom-build python. You can of >> course use VE with a custom-build python, but then there isn't as much >> use for it, as you then have a distinct python-instance already - unless >> you are going to share it amongst projects, which th

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread Krishnakant
> You are confusing virtualenv with a custom-build python. You can of course > use VE with a custom-build python, but then there isn't as much use for it, > as you then have a distinct python-instance already - unless you are going > to share it amongst projects, which then leads to the question w

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread Diez B. Roggisch
Krishnakant wrote: > I have another question in this same context. > I have python 2.6 and want to set up a vertualenv > in /opt/turbogears/python2.5. > Then use this for all the things a turbogears based application would > need for project execution. > > so I have decided that I will download p

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread Krishnakant
I have another question in this same context. I have python 2.6 and want to set up a vertualenv in /opt/turbogears/python2.5. Then use this for all the things a turbogears based application would need for project execution. so I have decided that I will download python 2.5 and compile it with ./co

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread Duncan Booth
OldGrantonian wrote: > Thanks to both Steven D'Aprano and Ant :) > >>> Sounds like you've downloaded the Python 2.5 version of Easy Install. > > There's no Python 2.6 version of EasyInstall :( I wonder what I've been running then? > > For 2.5, there is: > > setuptools-0.6c9.win32-py2.5.exe

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread OldGrantonian
Thanks to both Steven D'Aprano and Ant :) >> Sounds like you've downloaded the Python 2.5 version of Easy Install. There's no Python 2.6 version of EasyInstall :( For 2.5, there is: setuptools-0.6c9.win32-py2.5.exe But for 2.6, it's: setuptools-0.6c9-py2.6.egg For any other egg file, I woul

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread Ant
On May 7, 8:03 am, OldGrantonian wrote: ... > I had Python 2.6 on my laptop. > > I needed "easyinstall" to install virtualenv. During installation of > easyinstall, I got the message "Python 2.5 not found" > > So I installed Python 2.5, then installed virtualenv > > So I now have c:\Python 2.5 and

Re: Which python version do I use with "virtualenv"?

2009-05-07 Thread Steven D'Aprano
On Thu, 07 May 2009 00:03:11 -0700, OldGrantonian wrote: > So I now have c:\Python 2.5 and c:\Python 2.6 > > On the virtualenv web site, the instructions for use are: > > $ python virtualenv.py ENV > > My question is, which "python" should I use on this command line: 2.5 or > 2.6? I'm not an e

RE: Which Python Version

2007-07-04 Thread Robert Rawlins - Think Blue
riginal Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Golden Sent: 04 July 2007 11:36 Cc: python-list@python.org Subject: Re: Which Python Version Robert Rawlins - Think Blue wrote: > Is there a command I can run to confirm which version of python I'm running

Re: Which Python Version

2007-07-04 Thread Tim Golden
Robert Rawlins - Think Blue wrote: > Is there a command I can run to confirm which version of python I'm running? From outside Python: python -V (that's a capital V) From inside Python: import sys print sys.version (and a couple of more easily parseable alternatives; look at the sy