On Feb 14, 3:54 pm, "White, Joseph" <[EMAIL PROTECTED]> wrote: > trac-0.9.6-1.el4.rf
This is quite old. I'd highly recommend upgrading to Trac 0.10.3. > [EMAIL PROTECTED] site-packages]# pwd > /usr/lib64/python2.3/site-packages > > And also > > [EMAIL PROTECTED] site-packages]# pwd > /usr/lib/python2.3/site-packages Is /usr/lib64 really a different directory? On my system (Ubuntu) this is just a symlink to /usr/lib: [EMAIL PROTECTED]:~$ ls -ld /usr/lib64 lrwxrwxrwx 1 root root 3 2006-08-09 11:37 /usr/lib64 -> lib > ClearSilver not installed (/usr/lib/python2.3/site-packages/neo_cgi.so: > cannot open shared object file: No such file or directory) Since you appear to be running on a 64 bit platform it's possible Python is compiled as a 64 bit binary and you've installed a 32 bit version of neo_cgi.so, or the other way around. Check the library and your python binary like this: [EMAIL PROTECTED]:~$ file /usr/lib/python2.4/site-packages/neo_cgi.so /usr/lib/python2.4/site-packages/neo_cgi.so: ELF 64-bit LSB shared object, AMD x86-64, version 1 (SYSV), stripped [EMAIL PROTECTED]:~$ file /usr/bin/python2.4 /usr/bin/python2.4: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.6.0, dynamically linked (uses shared libs), for GNU/Linux 2.6.0, stripped Of course since you're using python2.3 change the version # where appropriate. -- Matt Good --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
