Skip to content

Instantly share code, notes, and snippets.

@tejaskhot
Created July 16, 2015 11:28
Show Gist options
  • Save tejaskhot/b4ea2e9d8b3991fcdb50 to your computer and use it in GitHub Desktop.
Save tejaskhot/b4ea2e9d8b3991fcdb50 to your computer and use it in GitHub Desktop.
ffmpeg: error while loading shared libraries: libssl.so.10: cannot open shared object file: No such file or directory
In order to resolve this, we need to create a soft link between two files.
Firstly, go to binstar.com and install the ffmpeg conda package(recent most).
This will create a libssl1.1.0 file in /anaconda/lib/
Navigate to /usr/lib/ and notice that libssl file does not exist there
We need to copy the file there
sudo cp /anaconda/lib/libssl1.1.0 /usr/lib/
But the error says that libssl.so.10 is not found.
We need to create a soft link like this:
sudo ln -s /usr/lib/libssl1.1.0 /usr/lib/libssl.so.10
Now the error should be resolved. Do the same for other files if an error is thrown.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment