Skip to content Skip to sidebar Skip to footer

Sqlite3 Loaderror: Incompatible Library Version

OS: Ubuntu 16, Rails 4, Ruby 2.1.2 error: LoadError: incompatible library version - /home/user/.rvm/gems/ruby-2.1.2@recipe_box/gems/sqlite3-1.3.11/lib/sqlite3/sqlite3_native.so /h

Solution 1:

Need to use lowerversion of sqlite3 gem (1.3.10) instead v. 1.3.11 Before if needed uninstall all gems and write to Gemfile:

gem 'sqlite3', '~> 1.3', '>= 1.3.10'

and use $ bundle install

It's helps me

Post a Comment for "Sqlite3 Loaderror: Incompatible Library Version"