找不到 bcrypt-3.1.11 的错误

getting error for Could not find bcrypt-3.1.11

我使用 gem 设备创建了一个应用,而不是 运行 捆绑安装。

比我尝试 运行 这个命令后

rails generate devise:install

但我收到错误

Could not find bcrypt-3.1.11 in any of the sources
Run `bundle install` to install missing gem...

我做了 bundle install

我试过 gem install bcrypt 安装这个 gem

我试过 bundle update 而不是 运行

bundle exec rails generate devise:install

但我仍然遇到同样的错误。

gem文件

source 'https://rubygems.org'


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5'
# 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

# 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'

  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
end

gem 'devise'

取消注释您的 Gemfile:

的这一行
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'

又是运行bundle install

将此行添加到您的 gemfile 此代码:

gem 'bcrypt'

然后在控制台中 运行 bundle install

运行 bundle update

我刚遇到同样的问题。我按照@Uday kumar das 的建议做了并且效果很好!

我花了几个小时才完成这项工作,但请随时分享 it.The 这里的根本问题是 Ruby 本身带有 bcrypt 版本 3.1.5,它具有较新更新的错误。

然而,当您安装或卸载 bcrypt 时,您会留下 bcrypt-ruby,它总是先要求它,因此您正在做的所有事情都不会通过,那该怎么办呢?

  1. 通过运行这两个命令卸载bcryptbcrypt-ruby

    gem uninstall bcrypt and gem uninstall bcrypt-ruby
    
  2. 再次安装:

    gem install bcrypt --platform=ruby
    

在你的 Gemfile 中写:

gem 'bcrypt','~>3.1.11'

现在,当我写这些行时,最新版本是 3.1.11,但无论更新什么版本,只需从他们的 gem 页面添加即可。 运行 bundle install 应该可以正常工作。

我遇到了同样的问题。我通过将项目克隆到另一个文件夹并在新克隆的项目中 运行ning bundle install 解决了这个问题。然后我可以再次 运行 rails 命令。希望这有帮助。

从您的 Gemfile 中删除所有 spring

gem "spring"
gem "spring-commands-rspec"

运行 bundle install

不知道为什么我尝试用 spring 做另一个应用程序。 :(

就我而言,我卸载了所有版本的 bcrypt,gem 卸载 bcrypt 和 select 选项 3(如果存在),并卸载了所有版本的 bcrypt-ruby gem 使用 gem 卸载 bcrypt-ruby 和 select 选项 3(如果存在),然后我使用 gem install bcrypt --platform = ruby 安装 bcrypt我在 Gemfile 中添加了这一行 gem 'bcrypt', '~> 3.1.7'。它工作正常。

搜索了很多回复后,对我来说这是 Rails-5.0.2 上的解决方案:

spring stop
bundle exec rake rails:update:bin
bundle exec spring binstub --all 

我刚刚在安装 devise 4.6.2 后遇到了 bcrypt 3.1.12 的同样问题。我不认为这是 crypt 或 devise 特有的,我相信这是一个 spring 问题,正如其他人所指出的那样。

我可以简单地通过停止 spring 并使用

重新运行 rails 生成器来解决这个问题
spring stop
rails g devise:install

在做任何破坏性或侵入性的事情之前先尝试一下。

gem pristine -a
bundle install
bundle update

帮我解决了这个问题

由于之前的尝试,我也将这些行注释掉了,但不确定是否有帮助。

# gem 'spring'
# gem 'spring-watcher-listen', '~> 2.0.0'