On Jan 9, 2008 6:46 PM, rob_mazur <[EMAIL PROTECTED]> wrote:

>
> On Jan 9, 1:16 pm, "David Grant" <[EMAIL PROTECTED]> wrote:
> > Why are you compiling mysql and python and mysqldb from scratch? You are
> > using SUSE are you not? Get the binary rpm packages.
> >
> > Dave
>
> Regardless of my last post, I followed your advice and installed
> python-mysql via SuSE's package manager.  Now when I try >>>import
> MySQLdb, I am back to getting:
>
> ImportError: /root/.python-eggs/MySQL_python-1.2.2-py2.4-linux-
> i686.egg-tmp/_mysql.so: undefined symbol: __pure_virtual
>
>
> So if I use SuSE's packages I get the error above.  If I use my own
> build of MySQL and Python I get the "ImportError: libmysqlclient_r.so.
> 15: cannot open shared object file: " error.  Note that I am trying
> all of this on three different SuSE installs (all 10.x) with
> consistent results.
>
> Does anyone have any advice of what to try next?
>

Well it is still trying to import from /root/.python-eggs/...  I would also
be interested in knowing why you are doing things as root, but I guess
that's not important...

It's still trying to import from /root/.python-eggs so get that out of your
python path. Run python and then

import sys
print sys.path

Remove /root/.python-eggs or any other paths.

Since it is happening on all three SUSE installs, well I don't know what to
think. I've never used eggs before and I never compile anyting from scratch
unless I really have to (except using Gentoo's package manger). Any
python/mysql/mysqldb are things you should never need to compile from
scratch (unless you really need to). And no offense but if you were someone
who really needed to compile them from scratch....I would have thought you
would be able to solve this problem yourself. I don't even use Gentoo
anymore, too much work.

-- 
David Grant
http://www.davidgrant.ca

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to