Error : 'incompatible library version' sqlite3-1.3.11 in rails

后端 未结 5 769
梦谈多话
梦谈多话 2021-01-13 15:22

I working on Ubuntu system(16.04).

My problem is whenever i setup any rails project and try to run rails s then i got \'incompatible library version\' e

5条回答
  •  悲&欢浪女
    2021-01-13 15:54

    The SQLite library is likely to be corrupted. Try reinstalling the gem by running the following from a command pronpt:

    gem uninstall sqlite3
    

    Then run:

    bundle install
    

提交回复
热议问题