I installaed mysql-python-1.2.0 for another online database program but found out that the program only supports mysql-python-0.9.2. Even I installed mysql-python-0.9.2 after that, the program didn't work. How can i make a clean uninstallation of mysql-python-1.2.0?
i installed the modules using:
python setup.py install
my platform is Red Hat Linux.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Packages using setup.py generally install in site-packages in your python library directory. If you have Python-2.3, this is probably /usr/lib/python2.3/site-packages.
Files that MySQLdb-1.2 installs:
_mysql.so
MySQLdb/ and everything in it
_mysql_exceptions.py (and .pyc)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I installaed mysql-python-1.2.0 for another online database program but found out that the program only supports mysql-python-0.9.2. Even I installed mysql-python-0.9.2 after that, the program didn't work. How can i make a clean uninstallation of mysql-python-1.2.0?
i installed the modules using:
python setup.py install
my platform is Red Hat Linux.
What program are you referring to?
Packages using setup.py generally install in site-packages in your python library directory. If you have Python-2.3, this is probably /usr/lib/python2.3/site-packages.
Files that MySQLdb-1.2 installs:
_mysql.so
MySQLdb/ and everything in it
_mysql_exceptions.py (and .pyc)