简体   繁体   English

如何修复此错误“gem install bootsnap -v'1.4.4'?

[英]How to fix this error "gem install bootsnap -v '1.4.4'?

I am a newbie and using Ruby on Rails, I am stucking with this problem. 我是一个新手并使用Ruby on Rails,我正在坚持这个问题。 I am trying to make a new project in Ruby on Rails, and when I used this "rails new -X", it gave me this message "an error occurred while installing bootsnap (1.4.4) and Bundler cannot continue. Make sure that 'gem install bootsnap -v '1.4.4' --source 'https:rubygems.org/'' succeeds before bundling" 我试图在Ruby on Rails上创建一个新项目,当我使用这个“rails new -X”时,它给了我这条消息“安装bootsnap(1.4.4)时出错,而Bundler无法继续。确保'gem install bootsnap -v'1.4.4' - source'https:rubygems.org/''在捆绑之前成功“

Then I tried the command 'gem install bootsnap -v '1.4.4' --source 'https:rubygems.org/'' , it gave me this message : " ERROR: While executing gem ... (NoMethodError) undefined method 'downcase' for nil:NilClass" 然后我尝试了命令'gem install bootsnap -v'1.4.4' - source'https:rubygems.org/'',它给了我这条消息:“错误:执行gem时...(NoMethodError)未定义方法” '为零:'NilClass'

I tried to find something from this website " https://rubygems.org/gems/bootsnap/versions/1.4.4-java " and installed it, but nothing changed. 我试图从这个网站“ https://rubygems.org/gems/bootsnap/versions/1.4.4-java ”找到一些东西并安装它,但没有任何改变。

My gem version is 2.5.2 我的宝石版是2.5.2

I know my question is just a little bit stupid but could you please help me? 我知道我的问题有点愚蠢,但你可以帮助我吗? Thank you very much. 非常感谢你。

You're getting this error " ERROR: While executing gem ... (NoMethodError) undefined method 'downcase' for nil:NilClass" because, you mentioned wrong source path. 你得到这个错误" ERROR: While executing gem ... (NoMethodError) undefined method 'downcase' for nil:NilClass"因为,你提到了错误的源路径。

Replace this 替换它

gem install bootsnap -v '1.4.4' --source https:rubygems.org/ gem install bootsnap -v'1.4.4' - source https:rubygems.org/

with this: 有了这个:

gem install bootsnap -v '1.4.4' --source https://rubygems.org/ gem install bootsnap -v'1.4.4' - source https://rubygems.org/

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM