6
I had the same error installing OpenStack on Ubuntu 11.10.
Running locate showed I only had version 1.0.0 and not 0.9.8
$ locate libssl.so
/lib/x86_64-linux-gnu/libssl.so.1.0.0
/usr/lib/x86_64-linux-gnu/libssl.so.1.0.0
I fixed it using:
$sudo apt-get install libssl0.9.8
2
I fixed it by creating a new virtualenv and installing all packages again. It seems my old virtualenv was still linking to the ubuntu 11.04 general ssl package, but the location was updated.
- [Django]-Customize Django Admin Change Form Foreignkey to Include View Record
- [Django]-Django: Safely validating untrusted HTML input
- [Django]-Chords of Chords Timeout
Source:stackexchange.com