a) The RPM files assume that the libmysqlclient_r.so.10 is present, and this does not seem to be the case with a default RH 8.0 RPM installation of the mysql-client packages.
b) When doing python setup.py build:
distutils.errors.DistutilsPlatformError: invalid Python installation: unable to open /usr/lib/python2.2/config/Makefile (No such file or directory)
This is with the default Python 2.2.1 RPM package installed from the RH 8.0 distros.
--Kent
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It seems you didn't installed the -devel package of your Python.
You cannot compile any Python extension without it, because it contains, as you see, the makefile!
Good luck!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2002-11-05
Kent,
You need to get MySQL-shared. You can download a rpm from mysql.com.
Eric
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, a couple of things:
a) The RPM files assume that the libmysqlclient_r.so.10 is present, and this does not seem to be the case with a default RH 8.0 RPM installation of the mysql-client packages.
b) When doing python setup.py build:
distutils.errors.DistutilsPlatformError: invalid Python installation: unable to open /usr/lib/python2.2/config/Makefile (No such file or directory)
This is with the default Python 2.2.1 RPM package installed from the RH 8.0 distros.
--Kent
It seems you didn't installed the -devel package of your Python.
You cannot compile any Python extension without it, because it contains, as you see, the makefile!
Good luck!
Kent,
You need to get MySQL-shared. You can download a rpm from mysql.com.
Eric