Stefan Krah added the comment:

Floris van Manen <rep...@bugs.python.org> wrote:
> Did compile that version and it launches.
> To test with my code i do not want to have it interfere with my current 
> version.
> I remember it is possible to setup n isolated environment with pip en 
> virtualenv.
> But i never did this so far.
> Any hints / links to (simple) script explanation that could do the job?
> Or is there an even simpler way?

I wouldn't bother with virtualenvs yet. First I'd simply install python
into /tmp:

mkdir /tmp/usr
./configure --prefix=/tmp/usr/
make
make install

Then always call python with the full path. If your app is a simple
script, then:

/tmp/usr/bin/python app.py

If you have to install it:

/tmp/usr/bin/python setup.py install

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue17020>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to