インストールしようとしている Ruby のバージョンは存在しません: Ruby-2.6.1

概要

Heroku で次のエラーが発生しました。インストールしようとしている Ruby のバージョンは存在しません: Ruby-2.6.1

しかし、ローカルで Ruby -v を入れると、これが得られました

ruby 2.6.1p33 (2019-01-30 revision 66950) [x86_64-darwin20]

gem update Bundler を実行すると、このエラーが発生しました

Updating installed gems
Updating bundler
ERROR:  Error installing bundler:
    bundler-2.5.6 requires Ruby version >= 3.0.0. The current ruby version is 2.6.1.
Nothing to update
Gems already up-to-date: bundler

gemfile内

source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "2.6.1"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rails', '~> 6.1.3', '>= 6.1.3.2'
# Use sqlite3 as the database for Active Record
# Use Puma as the app server
gem 'puma', '~> 5.0'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.0'
# 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.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :production do
  gem 'pg'
end
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'

# Reduces boot times through caching; required in config/boot.rb

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

group :development do
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem 'web-console', '>= 4.1.0'
  # Display performance information such as SQL time and flame graphs for each request in your browser.
  # Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
  gem 'rack-mini-profiler', '~> 2.0'
  gem 'listen', '~> 3.3'
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
group :production do
  gem 'rails_12factor'
end
gem 'nokogiri', '~> 1.10', '>= 1.10.3'
gem 'bootsnap'

gem 'mail_form'
gem "recaptcha", require: "recaptcha/rails"

rbenvのバージョン

      system
      2.4.0
    * 2.6.1 (set by /Users/nour/vancouver-786-limo-services/.ruby-version)
    3.1.0

% どの -ルビー

/Users/nour/.rbenv/shims/ruby
/Users/nour/.rbenv/shims/ruby
/usr/local/opt/ruby/bin/ruby
/usr/bin/ruby

解決策

MacOS には非常に古いバージョンの Ruby が同梱されており、これはデフォルトの PATH 上にあり、/usr/bin にあります。新しいバージョンの Ruby/gem コマンドを使用するには、それらをインストールする必要があります。これは、ソースから行うことも、homebrew を使用することも、rvm、rbenv、mise などのバージョン マネージャーを使用することもできます (これらはすべて、直接インストールすることも、homebrew を使用してインストールすることもできます)。選択した内容に応じて、ローカル インストールがシステム インストールよりも前に見つかるように、zsh/bash 構成ファイルを更新して PATH を更新する必要がある場合もあります。複数のインストールがある場合は、「this -a Ruby」と入力して出現順序を確認できます。

質問の編集で提供した追加情報によると、すでに rbenv を使用していることがわかります。ただし、バージョン 2.6.1 の横にあるアスタリスクは、それが現在使用するように構成されている Ruby のバージョンであることを示しています。また、バージョン 3.1.0 がインストールされていることも表示されます。 rbenv ドキュメントの説明に従って、「rbenv global 3.1.0」または「rbenv local 3.1.0」と入力すると、その使用に切り替えることができます。