kedar
kedar

Reputation: 61

LoadError: Could not open library 'lzo2': lzo2: cannot open shared object file: No such file or directory

When i run a command rake db:migrate on Centos 7 i get following error. rake aborted! LoadError: Could not open library 'lzo2': lzo2: cannot open shared object file: No such file or directory. Could not open library 'liblzo2.so': liblzo2.so: cannot open shared object file: No such file or directory.

I am using ruby 2.3.0 and rails 5.0.1.

Upvotes: 1

Views: 1739

Answers (2)

Vasili
Vasili

Reputation: 905

Just install it:

yum install lzo-devel

Upvotes: 1

kedar
kedar

Reputation: 61

The following package is required for centos os. yum install lzo-devel

Upvotes: 0

Related Questions