Re: multiple python version

2016-08-22 Thread lists
Mon, 22 Aug 2016 16:39:13 +0530 Jay Patel > Hi Anton, > > what i did was: > 1. mkdir /home/user/pyv2710 > > 2. wget http::/url-to-py-2.7.10.tgz > > 3. extract tar > > 4. ./configure --prefix=$HOME/user/pyv2710 && make && make install > > now used this installed binary with virtualenv > > 5

Re: multiple python version

2016-08-22 Thread lists
Mon, 22 Aug 2016 13:19:07 +0530 Jay Patel > Hi .. solution fron John works fperfect with OpenBSD 5.9 :D > > On Mon, Aug 22, 2016 at 1:57 AM, wrote: > > > Wed, 17 Aug 2016 11:06:30 +0530 Jay Patel > > > Thanks scott. I will look into it. I found john's solution easy though. > > > > Well, se

Re: multiple python version

2016-08-21 Thread lists
Wed, 17 Aug 2016 11:06:30 +0530 Jay Patel > Thanks scott. I will look into it. I found john's solution easy though. Well, search for the tools that allow you the language environment setup rather then demand that from the operating system, until you find that language operating system aware enoug

Re: multiple python version

2016-08-16 Thread Jay Patel
Thanks scott. I will look into it. I found john's solution easy though. On Tue, Aug 16, 2016 at 7:33 PM, Scott Bonds wrote: > I use pyenv to install multiple versions of python under a user account on > my OpenBSD boxes. > > https://github.com/yyuu/pyenv > > > On 08/16, Jay Patel wrote: > >> Oh.

Re: multiple python version

2016-08-16 Thread Scott Bonds
I use pyenv to install multiple versions of python under a user account on my OpenBSD boxes. https://github.com/yyuu/pyenv On 08/16, Jay Patel wrote: Oh.. okay.. That was my concern. Thanks. On Tue, Aug 16, 2016 at 2:11 PM, Stuart Henderson wrote: On 2016-08-16, Jay Patel wrote: > On Tue,

Re: multiple python version

2016-08-16 Thread Jay Patel
Oh.. okay.. That was my concern. Thanks. On Tue, Aug 16, 2016 at 2:11 PM, Stuart Henderson wrote: > On 2016-08-16, Jay Patel wrote: > > On Tue, Aug 16, 2016 at 12:28 PM, Stuart Henderson > > wrote: > > > >> On 2016-08-16, Jay Patel wrote: > >> > is there a way to get two python versions runni

Re: multiple python version

2016-08-16 Thread Stuart Henderson
On 2016-08-16, Jay Patel wrote: > On Tue, Aug 16, 2016 at 12:28 PM, Stuart Henderson > wrote: > >> On 2016-08-16, Jay Patel wrote: >> > is there a way to get two python versions running on OpenBSD system? and is >> > it advisable to use it for production system or just follow packaged python >>

Re: multiple python version

2016-08-16 Thread Jay Patel
Hi Stuart, I have requirement for my deployment to work with python 2.7.10 while pkg_add gives me 2.7.11. and for supervisor-3.2.0 from pkg_add requires python2.7.11 which contradicts for my deployment. Thanks On Tue, Aug 16, 2016 at 12:28 PM, Stuart Henderson wrote: > On 2016-08-16, Jay Patel

Re: multiple python version

2016-08-15 Thread Stuart Henderson
On 2016-08-16, Jay Patel wrote: > Hi all, > > greetings. > > is there a way to get two python versions running on OpenBSD system? and is > it advisable to use it for production system or just follow packaged python > version for production? You can just "pkg_add python" and choose - things are se

multiple python version

2016-08-15 Thread Jay Patel
Hi all, greetings. is there a way to get two python versions running on OpenBSD system? and is it advisable to use it for production system or just follow packaged python version for production? Thanks.