为什么在使用 Ruby 安装程序更新后 Ruby 没有更新?

Why is Ruby not updating after updating with Ruby Installer?

我目前在我的 Windows 10 机器上安装了 Ruby 版本 2.2.6,但需要更新命令才能使用 shopify_app gem。我下载了 Ruby 2.5.1-2 (x64) 没有 devkit,正如它在 Ruby 安装程序站点上所说的那样,并按照提示进行操作。我貌似安装完成了,但是在命令行输入ruby -v告诉我我还在使用2.2.6版本。我也试过 bundle update 给出了以下内容:

C:\Sites\postgresapp>bundle update
The dependency byebug (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for x86-mingw32 but the dependency is only for ruby. To add those platforms to the bundle, run `bundle lock --add-platform ruby`.
Fetching gem metadata from https://rubygems.org/...........
Fetching gem metadata from https://rubygems.org/..
Resolving dependencies........
Using rake 12.3.1
Using concurrent-ruby 1.0.5
Using i18n 1.0.1
Using minitest 5.11.3
Using thread_safe 0.3.6
Using tzinfo 1.2.5
Using activesupport 5.0.7
Using builder 3.2.3
Using erubis 2.7.0
Using mini_portile2 2.3.0
Using nokogiri 1.8.4 (x86-mingw32)
Using rails-dom-testing 2.0.3
Using crass 1.0.4
Using loofah 2.2.2
Using rails-html-sanitizer 1.0.4
Using actionview 5.0.7
Using rack 2.0.5
Using rack-test 0.6.3
Using actionpack 5.0.7
Using nio4r 2.3.1
Using websocket-extensions 0.1.3
Using websocket-driver 0.6.5
Using actioncable 5.0.7
Using globalid 0.4.1
Using activejob 5.0.7
Using mini_mime 1.0.0
Using mail 2.7.0
Using actionmailer 5.0.7
Using activemodel 5.0.7
Using activemodel-serializers-xml 1.0.2
Using arel 7.1.4
Using activerecord 5.0.7
Using activeresource 5.0.0
Using bindex 0.5.0
Using bundler 1.16.2
Using coffee-script-source 1.12.2
Using execjs 2.7.0
Using coffee-script 2.4.1
Using method_source 0.9.0
Using thor 0.20.0
Using railties 5.0.7
Using coffee-rails 4.2.2
Using multipart-post 2.0.0
Using faraday 0.12.2
Using ffi 1.9.25 (x86-mingw32)
Using graphql 1.8.5
Using graphql-client 0.13.0
Using hashie 3.5.7
Using multi_json 1.13.1
Using jbuilder 2.7.0
Using jquery-rails 4.3.3
Using jwt 1.5.6
Using multi_xml 0.6.0
Using oauth2 1.4.0
Using omniauth 1.8.1
Using omniauth-oauth2 1.5.0
Using omniauth-shopify-oauth2 1.2.1
Using pg 0.21.0 (x86-mingw32)
Using puma 3.12.0
Using sprockets 3.7.2
Using sprockets-rails 3.2.1
Using rails 5.0.7
Using rb-fsevent 0.10.3
Using rb-inotify 0.9.10
Using sass-listen 4.0.0
Using sass 3.5.7
Using tilt 2.0.8
Using sass-rails 5.0.7
Using shopify_api 4.12.0
Fetching shopify_app 8.2.6
Installing shopify_app 8.2.6
Gem::InstallError: shopify_app requires Ruby version >= 2.3.1.
An error occurred while installing shopify_app (8.2.6), and Bundler cannot
continue.
Make sure that `gem install shopify_app -v '8.2.6' --source
'https://rubygems.org/'` succeeds before bundling.

In Gemfile:
  shopify_app

编辑:添加 GEMFILE

source 'https://rubygems.org'

git_source(:github) do |repo_name|
  repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
  "https://github.com/#{repo_name}.git"
end

gem 'shopify_app', '~> 8.2.6'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.6'
# Use postgresql as the database for Active Record
gem 'pg', '~> 0.18'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# 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.2'
# 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 navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'simple_form'


group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug', platform: :mri
end

group :development do
  # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  gem 'web-console', '>= 3.3.0'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
"gem 'shopify_app'"

如何安装最新版本的Ruby?

您需要更新 PATH 环境变量,它仍然指向旧安装。如果我没记错的话,安装程序确实有一个复选框可以勾选以设置 PATH 变量。您的 PATH.

中一次只能安装一个

有关更改变量的快速方法,请参阅 this answer。它将遵循与以下相同的语法。

打开 cmd.exe 并输入:

set PATH=%PATH%;C:\Ruby250\bin

你的安装位置可能不同,进入前确认。您也可以通过 MyComputer 的属性 window 或他们现在所说的任何名称来实现。我发现终端更简单,因为它需要大约 6 windows 深度才能通过 GUI 进行更改。

一步一步:

  • 找到安装ruby的目录,通常 C:\Ruby250\bin(版本可能不同)
  • 打开命令提示符、终端、cmd.exe 或任何您想要的名称 更喜欢这样称呼它。
  • 键入 set PATH=%PATH%;C:\Ruby250\bin(更改文件夹名称,如果你 不同)
  • Enter按钮
  • 在新的 cmd.exe 中,键入 ruby -v
  • 享受

另一个编辑

  • 单击 "Start" 按钮(可能在屏幕的左下角)
  • 开始输入单词 "environment",直到您看到选项 Edit the system environment variables 出现
  • 点击那个
  • 会打开一个小的window,左下方是一个按钮 阅读 Environment Variables
  • 点击那个按钮
  • 将有两个部分,一个用于用户(即当前帐户) 仅),另一个是 "system",这是默认的和 系统范围的变量
  • 在每一个中(只是为了确定),突出显示具有 "Path" 为变量名
  • 找到您刚刚在列表中单击的按钮 Edit...
  • 点击它
  • 看表,每个人不一样,看不懂 你。找到那个是Ruby安装位置的那个, 我的读取 C:\Ruby24\bin 因为我正在使用 Ruby 2.4.4
  • 您需要确保文件夹路径是您安装的位置 RUBY。这不能为你做,只有你自己知道。默认情况下 C:\RUBY***\bin,其中 *** 是您的版本号。你必须 打开资源管理器,简单看一下。
  • 如果变量是where 是where Ruby 2.5安装的好,它 不需要更改,但查看列表以确保有 Ruby 的其他版本没有其他路径。如果有,突出显示 他们并单击删除按钮将其删除。
  • 在每个 window 上单击 OK,您可能已经进行了编辑,而不是 Cancel,而不是 X 出 window。
  • 要确认它是否有效,请打开一个新命令 window,如果已经 打开,更改将不会在其中更新。