Error importing cgi module

S

Sam Crow

Hello,

having a little problem loading python modules.. here is the output
from the interactive environment notice import sys worked correctly.
when I do a search in the lib driectory for cgi i can find the modules
there as well
Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "/usr/local/lib/python2.2/cgi.py", line 39, in ?
import urllib
File "/usr/local/lib/python2.2/urllib.py", line 26, in ?
import socket
File "/usr/local/lib/python2.2/socket.py", line 41, in ?
from _socket import *
ImportError: ld.so.1: python: fatal: relocation error: file
/usr/local/lib/libcrypto.so.0: symbol __eprintf: referenced symbol not
found

any thoughts?

Thank you,
Sam Crow
 
?

=?ISO-8859-1?Q?Gerhard_H=E4ring?=

Sam said:
Hello,

having a little problem loading python modules.. here is the output
from the interactive environment notice import sys worked correctly.
when I do a search in the lib driectory for cgi i can find the modules
there as well


Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "/usr/local/lib/python2.2/cgi.py", line 39, in ?
import urllib
File "/usr/local/lib/python2.2/urllib.py", line 26, in ?
import socket
File "/usr/local/lib/python2.2/socket.py", line 41, in ?
from _socket import *
ImportError: ld.so.1: python: fatal: relocation error: file
/usr/local/lib/libcrypto.so.0: symbol __eprintf: referenced symbol not
found

any thoughts?

Your Python is built with SSL support and the wrong SSL libraries are
picked up. If you got your Python binaries elsewhere, that may be the
problem. You can build Python yourself in this case.

Or maybe you installed a second OpenSSL yourself recently in
/usr/local/lib and this is causing you problems now?

-- Gerhard
 
?

=?ISO-8859-1?Q?Gerhard_H=E4ring?=

Gerhard said:
Your Python is built with SSL support and the wrong SSL libraries are
picked up. If you got your Python binaries elsewhere, that may be the
problem. You can build Python yourself in this case. [...]

That should have been: "If you've got your Python binaries *from*
elsewhere ..."

-- Gerhard
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top