我正在尝试运行bundle install,但是当我这样做时,我收到一条错误消息,指出“安装 sqlite3 (1.3.13) 时出错,Bundler 无法继续。” 我尝试运行gem install sqlite3 -v '1.3.13',但我也遇到了错误。
这是我的 Gemfile:
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.1.1'
# Use Puma as the app server
gem 'puma', '~> 3.7'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported …Run Code Online (Sandbox Code Playgroud)