key must be 32 bits

今天从xdite老师Github上fork的job-listing的专案

在运行rails s的时候出现的上面的这个错误

由于我的ruby版本是2.6.0,rails的版本是5.0.7

xdite老师专案的gemfile文件里是5.0.0

所有我一开始就想到这个版本问题,就直接在gemfile里面把原来fork下来专案里面的改成

gem 'rails', '~> 5.0.7', '>= 5.0.7.2'

gem 'sqlite3','1.3.13'

保存后运行bundle install(运行这一步也是觉得修改了gemfile后需要这个操作)

结果提示结果如下图:


仔细看报错红字,看到提示

Running `bundle update` will rebuild your snapshot from scratch, using only

the gems in your Gemfile, which may resolve the conflict.

就直接运行了bundle update

然后在bundle install

重开rails s

刷新本地local,搞定!!!

你可能感兴趣的:(key must be 32 bits)