https://stackoverflow.com/questions/34171874/an-error-occurred-while-installing-sqlite3-1-3-11-and-bundler-cannot-continue

bundle install 的时候出现了问题:

An error occurred while installing sqlite3 (1.3.11), and Bundler cannot continue.<br />
Make sure that `gem install sqlite3 -v &#39;1.3.11&#39; --source &#39;https://rubygems.org/&#39;` succeeds before bundling.

使用提示的`gem install sqlite3 -v '1.3.11' --source 'https://rubygems.org/'` 并不能直接安装,需要使用以下命令然后继续bundle:

sudo apt-get install -y sqlite3 libsqlite3-dev