Tagged Questions

19
votes
5answers
4k views

Why does ActivePython exist?

What's ActivePython actually about? From what I've read it's just standard Python with openssl and pyWin32 (on Win). No big deal I guess, I could install them in matter of minutes, and most people ...
4
votes
3answers
270 views

Error Installing Python MySQLdb on Windows 7

Please see the following stacktrace, is this a permissions issue? C:\Project\MySQL-python-1.2.3>python setup.py Traceback (most recent call last): File "setup.py", line 15, in <module> ...
2
votes
6answers
236 views

Django: setup.py install - access denied?

I have recently asked this question and this one Now i think I know the answer to my questions....it's all because i installed django using pypm... and something else is wrong! I did as they said, ...
2
votes
3answers
673 views

PythonWin's python interactive shell calling constructors twice?

While answering http://stackoverflow.com/questions/68645/python-static-variable#81002 I noticed that PythonWin PyWin32 build 209.2 interpreter seems to evaluate twice? PythonWin 2.5 (r25:51908, Mar ...
1
vote
1answer
198 views

pil png activestate on windows 7 ZLIB (PNG/ZIP) support not available

I'm trying to port a python program from OS X to Windows 7. This program processes a png with tkinter eg self.logoImg = ImageTk.PhotoImage(Image.open('GrowthPathLogo.png')) The code is failing with ...
1
vote
1answer
348 views

Windows with Plesk Panel installs ActiveState Python 2.5.0 - any thoughts?

I expect to run Pylons on a Windows Server 2003 and IIS 6 on a Virtual Private Server (VPS). Most work with the VPS is done through the Plesk 8.6 panel. The Plesk panel has a lot of maintenance ...
0
votes
0answers
52 views

Multiple python versions using virtualenv -p (and virtualenvwrapper-win) on Windows

I'd like to use multiple versions of python (2.5 and 2.7 is what I need, but would be nice to have 3.2 also). On Windows XP! I'd like to use virtualenvwrapper-win instead of virtualenv -p Here's ...
0
votes
2answers
50 views

Running program in Python [ActiveState Python on Windows]

I just started learning python and was writing programs in Python GUI Shell IDLE. The code is the following: >>> def buildConnectionString(params): """Build a connection string from a ...
0
votes
1answer
82 views

Python script invocation weirdness on Windows (aka why PATH did not get inherited?)

I've encountered a behavior I did not expect when executing the following Python script (I named it repro.py): import os print os.environ['PATH'].replace(';', '\n') If invoked by python repro.py, I ...