View Single Post
Marshall Banana's Avatar
Posts: 94 | Thanked: 209 times | Joined on Oct 2009 @ Germany
#560
This looks like a library path issue.

What's the output when you execute the following commands in terminal:
Code:
run-standalone.sh python
import sys
sys.path
import OpenSSL
You can exit the python shell with CTRL+D. Is '/usr/lib/pymodules/python2.5' in sys.path? If not, please try this and post the output:
Code:
run-standalone.sh python
import sys
sys.path.append('/usr/lib/pymodules/python2.5')
import OpenSSL