This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skrah
Recipients klankschap, peter.otten, r.david.murray, rhettinger, ronaldoussoren, skrah
Date 2013-01-25.21:27:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <20130125212754.GA18885@sleipnir.bytereef.org>
In-reply-to <DD45DF21-A76A-4009-B2DB-54758469C06A@klankschap.nl>
Content
Floris van Manen <report@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
History
Date User Action Args
2013-01-25 21:27:52skrahsetrecipients: + skrah, rhettinger, ronaldoussoren, peter.otten, klankschap, r.david.murray
2013-01-25 21:27:52skrahlinkissue17020 messages
2013-01-25 21:27:52skrahcreate