为什么用Ruby Installer更新后Ruby无法更新?

时间:2018-07-28 18:04:14

标签: ruby-on-rails ruby shopify-app railsinstaller-windows

我目前在Windows 10计算机上安装了Ruby版本2.2.6,但是需要更新订单才能使用shopify_app gem。我按照Ruby Installer网站上的说明下载了没有devkit的Ruby 2.5.1-2(x64),并按照提示进行了操作。我似乎完成了安装,但是在命令行中输入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的安装?

1 个答案:

答案 0 :(得分:1)

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

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

打开cmd.exe并输入:

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

您的安装位置可能不同,请在输入之前进行确认。您也可以通过MyComputer的属性窗口或他们现在称为的窗口进行操作。我发现终端更简单,因为通过GUI进行更改大约需要6个窗口。

逐步操作:

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

另一项编辑

  • 单击“开始”按钮(可能在屏幕的左下方)
  • 开始输入单词“ environment”,直到看到出现选项Edit the system environment variables
  • 单击该
  • 将打开一个小窗口,在左下角是一个按钮, 读取Environment Variables
  • 单击该按钮
  • 将有两个部分,一个用于用户(即当前帐户) 仅),另一个是“系统”,这是默认值, 系统范围的变量
  • 在每种情况下(请确保),突出显示包含 变量名称的“路径”
  • 在您刚刚单击的列表中找到以下按钮: Edit...
  • 点击它
  • 浏览列表,每个人都不一样,无法阅读 您。找到一个它是Ruby安装的位置, 我的读为C:\Ruby24\bin,因为我使用的是Ruby 2.4.4
  • 您需要确保文件夹路径位于您安装的位置 红宝石。只有您知道,这无法为您完成。默认情况下 C:\RUBY***\bin,其中***是您的版本号。你必须 打开浏览器,然后简单地查看。
  • 如果变量是Ruby 2.5的安装位置,那么很好 不需要更改,但请仔细查看列表以确保在那里 没有其他通往Ruby其他版本的路径。如果有,突出显示 它们,然后单击删除按钮将其删除。
  • 在您可能已进行编辑但未进行编辑的每个窗口上单击OK Cancel,而不是X弹出窗口。
  • 要确认它是否有效,请打开一个新的命令窗口(如果已经打开) 打开,更改将不会更新。