0
votes
2answers
34 views

How do you manually tell Python which version to use in the script itself, across multiple operating systems?

I have Python 2.7 and 3.3 installed on Windows, and Python 2.7 and 3.2mu installed on Linux. How would I write a Python script that is able to be used on both Windows and Linux, using version 2.X or ...
1
vote
2answers
30 views

which version of program will execute? the one in the /usr/bin or the one in /usr/local/bin?

I have python in both /usr/bin and /usr/local/bin. Now I have this question that which one will execute if I call python? I know that I can check with which python command to see which one is which ...
0
votes
1answer
88 views

Python shell script error with Popen

My shell script: #!/usr/bin/python import subprocess, socket HOST = 'localhost' PORT = 4444 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((HOST, PORT)) while 1: data = ...
0
votes
2answers
61 views

How may one determine which version of Python is suitable for a script? [closed]

I want to determine which version of Python would be most appropriate for a Python script. Is there an automated way to do this? The specific problem I have in mind is to determine which version of ...
3
votes
2answers
75 views

How do I access different python module versions?

so I am working on a shared computer. It is a workhorse for computations across the department. The problem we have run into is controlling versions of imported modules. Take for example Biopython. ...
2
votes
1answer
70 views

Python's argparse to show program's version with prog and version string formatting

What's the preferred way of specifying program name and version info within argparse? __version_info__ = ('2013','03','14') __version__ = '-'.join(__version_info__) ... parser.add_argument('-V', ...
0
votes
1answer
58 views

System to organize models and results in NoSQL? [closed]

When building models, we often go through many stages of analysis from studying of relationships between candidate predictors and the response, variable selections and fitting many different models to ...
0
votes
0answers
35 views

changing default version of numpy

I just successfully upgraded my version of numpy with the command: sudo pip install numpy --upgrade I want to install matplotlib so I run the command: sudo pip install matplotlib I get an error ...
0
votes
3answers
351 views

How to set default python version in terminal on OS X 10.6.8?

I just downloaded python 2.7 on my mac which runs OS X 10.6.8. The previous version of python installed was 2.6. When I type python in the terminal it opens python version 2.6. I want it to open ...
0
votes
2answers
56 views

get shared library soname in a Python program

I'm writing a Python wrapper for a shared Linux library using ctypes. Is there some way to extract the library's soname programmatically (e.g., possibly via some library for accessing its ELF data)? ...
0
votes
2answers
73 views

Model History in Django

This is a flavour of question that has been asked before, but not quite covering the same issues. I've read through these (question, question, question, and question) but the issue is slightly ...
0
votes
1answer
56 views

API Versioning while maintaining git history

I currently have a v1 API and have updated and created new scripts for v2. The API is consumed by other developers and consists of a bunch of scripts. Before migrating and adding v2 I want to make ...
1
vote
3answers
88 views

Problems with different versions of python

Questions similar to this one have been asked but I haven't seen a solution yet that helps me. I am running Windows 7 and I've installed two versions of python, 3.3 and 2.7. Python 3.3 was the first ...
8
votes
2answers
75 views

Where should version independent python library go?

I have a pure python module that will work for both Python 2.6 and 2.7. Instead of putting the module into the python version specific paths, is it possible to place the library at one location that ...
2
votes
0answers
37 views

Why do App versions differ on OSX

As since earlier this year the application AppFresh for the Mac has become a commercial product I was thinking of making a small Python script to check for versions of applications. Basically what ...
0
votes
2answers
119 views

Install numpy on Snow Leopard

When I try to install numpy over a python.org python2.6 installation, I get these errors on my OS X terminal. sh: gcc-4.2: command not found And this causes failure. I noticed a pastebin ...
1
vote
0answers
317 views

Python versions gone after installing Python 3.3 via Macports

so I installed Python 3.3 via Macports, using port install python33 (Using OSX 10.8.2 ML) Everything worked fine (at least it didn't put out any error message at the end) So after this I wanted to ...
0
votes
3answers
135 views

Possible to extract the git repo revision hash via Python code?

Are there any easy ways to grab the git repository (on GitHub) version hash with Python code? I want to use this to handle versioning of 'dev' releases of my software on github.
0
votes
2answers
200 views

How can python version installed on Redhat can be different from the version that application uses?

When I type "python" in command line, it says: Python 2.4.3 (#1, Dec 11 2006, 11:39:03) [GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2 But I have an application that uses Python 2.7 on the same ...
1
vote
1answer
215 views

Bottle Version Python Web Framework

Need help with bottle, I have a clean installation of Ubuntu 11.10, i'm trying to get bottle with the next command : sudo apt-get install python-bottle, and i get the bottle version 0.9.5-1 , that's ...
0
votes
1answer
89 views

what is better way of getting windows version in python?

I am going to write a program that performs Windows OS version check, since I can do it with sys.windowsversion()[0] or with platform module that returns string not int what would be better way to get ...
0
votes
2answers
148 views

HTTPConnection to make DELETE request: 505 response

Frustratingly I'm needing to develop something on Python 2.6.4, and need to send a delete request to a server that seems to only support http 1.1. Here is my code: httpConnection = ...
2
votes
5answers
124 views

Open Source Scientific Project - Use Python 2.6 or 2.7?

I've seen several other topics on whether to use 2.x or 3.x. However, most of these are at least two years old and do not distinguish between 2.6 and 2.7. I am rebooting a scientific project that I ...
3
votes
1answer
50 views

How can I allow python users with a version lower than python2.7 to run my program that uses `sysconfig`?

I made a python program which uses the sysconfig module. How can I allow python users with a python version lower than python2.7 to also run that program? I can not find this library in PyPI. Before ...
1
vote
2answers
165 views

Cannot capture output of java -version using os.popen

Here is my code f = os.popen("java -version") for i in f.readlines(): print "result, ", i, Basically I want the output of java -version to be stored in f. What happens is, after ...
0
votes
1answer
64 views

How to reliably determine version of /usr/bin/vlc from Python?

For example, subprocess.Popen(["/usr/bin/vlc", "--version"], stderr=subprocess.PIPE, stdout=subprocess.PIPE).communicate() on my computer leads to ('VLC version 2.0.2 Twoflower (.....see the ...
7
votes
3answers
360 views

How to compare “version-style” strings

I am walking a directory that contains eggs to add those eggs to the Pythonpath (sys.path). If there are two versions of the same .egg in the directory, I want to add only the latest one. I have ...
3
votes
2answers
523 views

Database Version Control for MySQL

What method do you use to version-control your database? I've committed all our database tables as separate .sql scripts to our respository (mercurial). In that way, if any member of the team makes a ...
0
votes
2answers
166 views

How to get Scrapy Version 0.12?

Scrapy does not seem to allow installing previous version. The methods listed are: easy_install -U Scrapy and: pip install Scrapy Both these ways just download the latest versions of Scrapy, ...
0
votes
4answers
730 views

how tell python script to use particular version

How do I tell, in the main.py module (presumably), tell python which interpreter to use? What I mean is: if I want a particular script to use version 3 of python to interpret the entire program, how ...
0
votes
3answers
312 views

Python cannot find modules after upgrading from 2.6 to 2.7

Specifically, Python is unable to find SQL Alchemy. Running easy_install does not help, as easy_install thinks SQL Alchemy is already installed and lists the path as ...
0
votes
3answers
222 views

Upgrading from Python 2.6 to 2.7 isn't working

Using a mac 10.6, I tried downloading and installing python 2.7. Although the installer finished, and python 2.7 is in the Applications folder, the framework folder still hasn't changed, and the ...
1
vote
3answers
712 views

Changing string to byte type in Python 2.7

In python 3.2, i can change the type of an object easily. For example : x=0 print(type (x)) x=bytes(0) print(type (x)) it will give me this : <class 'int'> <class 'bytes'> But, in ...
1
vote
2answers
1k views

Python Versions on Mac

I'm working on Mac Os 10.7 (Lion) and I have some questions: What is the pre-installed version of python on Lion? I've been working on this computer for some time now, and i've installed lots of ...
1
vote
1answer
189 views

Store versioned history of Field in a Django model

I have a model with a text field, that needs to be versioned. class Book(models.Model): title = models.CharField(max_length=100) summary = models.TextField() The expected behavior is as ...
0
votes
9answers
1k views

How to use multiple versions of Python without uninstallation

I am faced with a unique situation, slightly trivial but painful. I need to use Python 2.6.6 because NLTK is not ported to Python 3 (that's what I could gather). In a different code(which am ...
6
votes
3answers
3k views

Mac OSX: Switch to Python 2.7.3

I've installed the Mac OSX Python 2.7.3, and tried switching to the new version: $ python2.7 -V Python 2.7.3 # It was installed $ python -V Python 2.6.1 # Default is 2.6 $ export ...
11
votes
1answer
1k views

Upgrade python in a virtualenv

Is there a way to upgrade the version of python used in a virtualenv (e.g. if a bugfix release comes out)? I could pip freeze --local > requirements.txt then remove the directory and pip install ...
12
votes
3answers
269 views

What is Python's equivalent of “perl -V”

The output produced by running perl -V is packed with useful information (see example below). Is there anything like it for Python? Example output: % perl -V Summary of my perl5 (revision 5 ...
2
votes
2answers
103 views

python module for handling version of software

I am looking for a python module / library which will be to operate on 'software versions'... Which means, for example: compare versions "1.0-SNAPSHOT" and "1.1-SNAPSHOT" and tell which is newer ...
0
votes
1answer
371 views

RuntimeWarning: compiletime version 2.6 of module 'lxml.etree' does not match runtime version 2.7

I am using python 2.7 and i am trying to use lxml but when i try using lxml.etree i get this error: RuntimeWarning: compiletime version 2.6 of module 'lxml.etree' does not match runtime version ...
0
votes
1answer
177 views

Code still runs using old version of Python

I have installed python 2.7 on my CentOS server. When I go into the python command line it tells me I'm using 2.7. When I issue a python -v command it reports 2.7. But when I run the script I'm ...
8
votes
2answers
325 views

Consistent versioning in Python project

I have a Python project which has Sphinx documentation and distutils for publishing to Pip. Both of these functions require a version (e.g., 0.4b3) Is there a best practice for automatically ...
1
vote
0answers
111 views

how to control version of data object (instance) in sqlalchemy?

How would one set up the model in sqlalchemy to have a versioncontrol in the instance(column_version)? Unique PK over Table. Unique Version over PK. Archive-Flag (latest version not archived). ...
3
votes
4answers
396 views

How to control what version of Python is run when double clicking a file?

Is there a way to control what version of python is run when double clicking on a py file? From the command line and in environments such as eclipse I can control what version is run. But from ...
2
votes
1answer
66 views

Pass python session to a script written with another version of python

For example, if I have: (1) ScriptA, written in 2.X as it needs 2.X libraries (2) ScriptB, written in 3.X, as it needs 3.X libraries Is there a way to do the following?: -> ScriptA calls scriptB ...
0
votes
1answer
191 views

How to install readline via buildout

I would like to configure my python project to automatically build postgresql in installation process. You can do it similar to what's described here: Buildout, psycopg2, postgresql The problem is I ...
1
vote
2answers
319 views

IRC bot: MOTD doesn't come even though I did USER and NICK

I'm making an IRC bot in python for the hackthissite challenge (prog 8). Here's an excerpt of the connection code: def ping(): ircsock.send("PONG :Pong\n") ircsock.connect((server,6667)) ...
0
votes
1answer
161 views

Change the version of python 2.6 to python 2.5 or 2.4

Python-igraph is giving error when I install it on python 2.6 .SO, i wish to change it to python 2.5 or 2.4. I need to remove python2.6 and install python 2.5. Please show me a way to accomplish ...
2
votes
1answer
170 views

Py2exe version number for com dll

Is there are a way to add to the dll which py2exe makes a version tag? If I generate a new dll I need to see which function/clases are already implemented and I need to see if there are are already a ...

1 2