I am using Python 2.3 on SuSE 9.0 and I get this error:
Traceback (most recent call last):
File "setup.py", line 2, in ?
from distutils.core import setup
ImportError: No module named distutils.core
I was wondering if I could use PDO on this version of Python? Thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
What it sounds like is a missing file in distutils itself. Python 2.3, is that just 2.3 or 2.3.1 or? And are you using a version of python you installed yourself or directly with Suse? If it is the version included in Suse, you may wish to actually download the latest source package from http://python.org/2.3.2/.
PDO, should be able to be used on the 2.3 version of python, and as a matter of fact has been tested with 2.2.* and 2.3.* versions without failure. Of course it sounds like what your dealing with is more a corrupt or missing version of distutils.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am using Python 2.3 on SuSE 9.0 and I get this error:
Traceback (most recent call last):
File "setup.py", line 2, in ?
from distutils.core import setup
ImportError: No module named distutils.core
I was wondering if I could use PDO on this version of Python? Thanks.
What it sounds like is a missing file in distutils itself. Python 2.3, is that just 2.3 or 2.3.1 or? And are you using a version of python you installed yourself or directly with Suse? If it is the version included in Suse, you may wish to actually download the latest source package from http://python.org/2.3.2/.
PDO, should be able to be used on the 2.3 version of python, and as a matter of fact has been tested with 2.2.* and 2.3.* versions without failure. Of course it sounds like what your dealing with is more a corrupt or missing version of distutils.