Python version problem for rpm
Dave Angel
davea at davea.name
Fri Feb 14 07:12:12 EST 2014
More information about the Python-list mailing list
Fri Feb 14 07:12:12 EST 2014
- Previous message (by thread): Python version problem for rpm
- Next message (by thread): Python version problem for rpm
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
anju tiwari <anjutiwari5 at gmail.com> Wrote in message: > I have two version of python 2.4 and 2.7. > By default python version is 2.4 . I want to install need to install some rpm which needs python 2.7 interpreter. how can I enable 2.7 interpreter for only those packages which are requiring python 2.7, I don’t want to change my default python version(2.4) You don't say what OS you're running, but I'll assume some version of Linux. If you have some scripts that require 2.7, then change the shebang line to point explicitly to the 2.7 executable, rather than using #/usr/bin/env python Or make a symlink called python27 and use that explicitly when non default version is needed. -- DaveA
- Previous message (by thread): Python version problem for rpm
- Next message (by thread): Python version problem for rpm
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list