Unknown ruby 解释器版本(不知道如何处理):RUBY_VERSION
Unknown ruby interpreter version (do not know how to handle): RUBY_VERSION
尝试 rvm use .
以按照说明进行操作 in here 以尝试修复我搞砸的配置,我在控制台中收到以下消息:
Unknown ruby interpreter version (do not know how to handle): RUBY_VERSION.
Could not determine which Ruby to use; . should contain .rvmrc or .versions.conf or .ruby-version or .rbfu-version or .rbenv-version, or an appropriate line in Gemfile.
我猜这是指 Gemfile 中的变量 RUBY_VERSION:
source "https://rubygems.org"
ruby RUBY_VERSION
我该怎么办?我想 RUBY_VERSION
变量必须定义为系统变量 ?
我正在尝试使用 Jekyll。
额外信息:
现在我有:
gem -v
2.6.14
ruby -v
ruby 2.0.0p648(2015-12-16 修订版 53162)[通用.x86_64-darwin15]
jekyll -v
失败并出现很长的错误。
bundle -v
捆绑器版本 1.14.4
RUBY_VERSION 应该是特定的版本字符串,例如“2.4.2”(带引号)。
但是,如果您不特别关心使用哪个 Ruby 版本,那么您应该可以删除整行,rvm 将使用默认值。
尝试 rvm use .
以按照说明进行操作 in here 以尝试修复我搞砸的配置,我在控制台中收到以下消息:
Unknown ruby interpreter version (do not know how to handle): RUBY_VERSION. Could not determine which Ruby to use; . should contain .rvmrc or .versions.conf or .ruby-version or .rbfu-version or .rbenv-version, or an appropriate line in Gemfile.
我猜这是指 Gemfile 中的变量 RUBY_VERSION:
source "https://rubygems.org"
ruby RUBY_VERSION
我该怎么办?我想 RUBY_VERSION
变量必须定义为系统变量 ?
我正在尝试使用 Jekyll。
额外信息:
现在我有:
gem -v
2.6.14ruby -v
ruby 2.0.0p648(2015-12-16 修订版 53162)[通用.x86_64-darwin15]jekyll -v
失败并出现很长的错误。bundle -v
捆绑器版本 1.14.4
RUBY_VERSION 应该是特定的版本字符串,例如“2.4.2”(带引号)。
但是,如果您不特别关心使用哪个 Ruby 版本,那么您应该可以删除整行,rvm 将使用默认值。