简体   繁体   English

捆绑器找不到兼容的捆绑器版本-Ruby On Rails **添加载波Gem **

[英]Bundler could not find compatible versions of bundler - Ruby On Rails **Adding Carrierwave Gem**

I am trying to add the carrierwave gem. 我正在尝试添加载波宝石。 Once I put it into my gemfile and run bundle install, I receive this message on the command prompt telling me the bundler could not find compatible versions of bundler. 将其放入gemfile并运行bundle install之后,我在命令提示符下收到此消息,告诉我bundler找不到兼容版本的bundler。 I understand there is already many people out there which have asked the same sort of question, however after trying solutions such as deleting gemfile.lock or running bundle update, it still doesn't seem to be working. 我知道那里已经有很多人问过同样的问题,但是在尝试了诸如删除gemfile.lock或运行bundle update之类的解决方案之后,它似乎仍然无法正常工作。

After trying different solutions I am getting the same error as shown on the image. 在尝试了不同的解决方案后,我得到了如图所示的相同错误。

Any help would be appreciated! 任何帮助,将不胜感激!

Gemfile: 的Gemfile:

source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5.1'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read 
more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

gem 'bootstrap-sass', '3.3.6'

gem 'devise', '~> 4.2'

gem 'carrierwave', '~> 1.0'

# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Unicorn as the app server
# gem 'unicorn'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger 
console
gem 'byebug'
end

group :development do
# Access an IRB console on exception pages or by using <%= console %> in 
views
gem 'web-console', '~> 2.0'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

gem 'will_paginate', '~> 3.1', '>= 3.1.6'

gem 'will_paginate-bootstrap', '~> 1.0', '>= 1.0.1'

Error after running "Bundle Install" Image of error 运行“捆绑安装” 后出现错误

EDIT: 编辑:

After trying Mismatched bundler version - bundler 2, ruby 2.6 , i received the following error: 尝试使用不匹配的捆绑器版本-捆绑器2,ruby 2.6时 ,我收到以下错误:

Edit Error after running bundle binstubs bundler 运行Bundle Binstubs Bundle后出现编辑错误

SOLVED: 解决了:

Removed 删除

bundler (>= 1.3.0, < 2.0)

from the gemfile.lock and ran bundle install. 从gemfile.lock运行捆绑安装。

In your terminal/app folder 在您的终端/应用程序文件夹中

bunde update

and then 接着

bundle install

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Ruby 导轨错误:捆绑器找不到 gem“捆绑器”的兼容版本: - Ruby rails error: Bundler could not find compatible versions for gem "bundler": Bundler 找不到 gem“ruby”的兼容版本 - Bundler could not find compatible versions for gem "ruby" Ruby on Rails:捆绑安装找不到“捆绑器”gem的兼容版本 - Ruby on Rails: Bundle install could not find compatible versions for “bundler” gem Bundler找不到宝石“ bundler”的兼容版本 - Bundler could not find compatible versions for gem “bundler” Bundler 找不到 gem“bundler”的兼容版本: - Bundler could not find compatible versions for gem "bundler": ActiveAdmin with Rails 4:Bundler找不到宝石“ rails”的兼容版本 - ActiveAdmin with Rails 4: Bundler could not find compatible versions for gem “rails” Bundler找不到与“ bundler”宝石兼容的版本:在Gemfile中:rails(= 3.0.0)已解析为3.0.0,这取决于捆绑程序(〜&gt; 1.0.0) - Bundler could not find compatible versions for gem “bundler”: In Gemfile: rails (= 3.0.0) was resolved to 3.0.0, which depends on bundler (~> 1.0.0) 安装 Rails 6 - Bundler 找不到 gem actionpack 的兼容版本 - Install Rails 6 - Bundler could not find compatible versions for gem actionpack Bundler找不到宝石“ sass-rails”的兼容版本 - Bundler could not find compatible versions for gem “sass-rails” Bundler找不到与gem“ actionpack”兼容的版本-Rails - Bundler could not find compatible versions for gem “actionpack” - Rails
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM