Rails。 'Bundle install' 在 Ruby 版本升级后出现 'bad interpreter: No such file or directory' 错误 (Windows)
Rails. 'Bundle install' gives the 'bad interpreter: No such file or directory' error after Ruby version upgrade (Windows)
我已将 Ruby 版本从 2.5.x 升级到 2.6.x(并卸载了 2.5.x 版本)。
现在我在 bundle install
上收到错误(对于我现有的 Rails 项目):
bash: /c/Ruby25-x64/bin/bundle: C:/Ruby25-x64/bin/ruby.exe^M: bad interpreter: No such file or directory
如何告诉打包器使用较新的 Ruby 版本?
OS Windows 10.
好的,我找到了解决方案。
首先,不要使用git bash
终端,而是使用cmd.exe
。这给了我为什么 bundle install
不起作用的信息('mimemagic' gem 有问题)。
我已经 运行 bundle update
安装了所有必要的 gem,现在一切正常。
我已将 Ruby 版本从 2.5.x 升级到 2.6.x(并卸载了 2.5.x 版本)。
现在我在 bundle install
上收到错误(对于我现有的 Rails 项目):
bash: /c/Ruby25-x64/bin/bundle: C:/Ruby25-x64/bin/ruby.exe^M: bad interpreter: No such file or directory
如何告诉打包器使用较新的 Ruby 版本?
OS Windows 10.
好的,我找到了解决方案。
首先,不要使用git bash
终端,而是使用cmd.exe
。这给了我为什么 bundle install
不起作用的信息('mimemagic' gem 有问题)。
我已经 运行 bundle update
安装了所有必要的 gem,现在一切正常。