I am getting the following error when I attempt to execute: python setup.py
Traceback (most recent call last):
File "setup.py", line 9, in ?
from ConfigParser import SafeConfigParser
ImportError: cannot import name SafeConfigParser
I searched this forum as well as the faq and I was unable to locate any information regarding this. I am sure it is something simple.
Python 2.2.2 (#1, Feb 24 2003, 19:13:11)
MySQL server version: 4.0.18-standard
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I had the wrong README open when I was checking my versions. I am assuming this error is due to the fact that my Python is only 2.2.2 and this package requires 2.3.4.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Yup, that would be the issue. In theory you could backport (or just copy) the ConfigParser module from 2.3. It is only needed to build, not to run. However, I'm pretty sure there are a couple other 2.3-and-newer features used in 1.2.1.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am getting the following error when I attempt to execute: python setup.py
Traceback (most recent call last):
File "setup.py", line 9, in ?
from ConfigParser import SafeConfigParser
ImportError: cannot import name SafeConfigParser
I searched this forum as well as the faq and I was unable to locate any information regarding this. I am sure it is something simple.
Python 2.2.2 (#1, Feb 24 2003, 19:13:11)
MySQL server version: 4.0.18-standard
I had the wrong README open when I was checking my versions. I am assuming this error is due to the fact that my Python is only 2.2.2 and this package requires 2.3.4.
Yup, that would be the issue. In theory you could backport (or just copy) the ConfigParser module from 2.3. It is only needed to build, not to run. However, I'm pretty sure there are a couple other 2.3-and-newer features used in 1.2.1.