Library to swap to newer python version on a multi-version system.
Project description
Find the latest Python 2 version installed on the system and if this program is not running on that version, re-invoke it with that version.
Background
One of the problems of a system administrator is that enterprise Linux distros which ship with, and often require, /usr/bin/python to be a fairly old versions. For example, Python 2.1. Applications can be very difficult to write such that they are happy on Python 2.1 and Python 2.7. Many of these distros include a newer Python, but it has to be invoked as “python2.6”, for example.
You can change the “#!” line in the script, but this makes packaging more difficult.
Examples
To make sure you are running on the absolutely latest installed Python 2 on the system:
import sys print ‘Version:’, sys.version_info import ineedpy2 ineedpy2.rerunonlatest()
If run on a system with the default Python version being 2.1, but python 2.6 also installed will display:
Version: (2, 1, 3, ‘final’, 0) Version: (2, 6, 5, ‘final’, 0)
NOTE: Anything run before the “runonlatestpy2” will be run once on the older version and once on the newer version.
You can also request the reinvocation only if the python minor version isn’t at least a specific value. In other words, “I know I need at least Python 2.4”:
from ineedpy2 import requireminor requireminor(4)
License
Copyright (c) 2011, Sean Reifschneider <jafo@tummy.com>, tummy.com, ltd. Released under the Python Software Foundation License For more information, see: http://docs.python.org/license.html
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file ineedpy2-1.01.tar.gz
.
File metadata
- Download URL: ineedpy2-1.01.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70dfcc3373fb32044295b038ef38a3bad999e7035b55888b2c6070b62043d612 |
|
MD5 | d9f5e775a5a54a718a285bd85bb33e2d |
|
BLAKE2b-256 | 5ac14da9e2e8688e5b2b835a0c4d8d5d71a9fb4bc58a890a30743ae836fff59a |