前提・実現したいこと
Ruby on railsで「bundle install」したいです。
発生している問題
bundle installができません。
エラーメッセージ
「bundle install」すると下のエラーが出ます。
Your bundle only supports platforms [] but your local platforms are ["ruby", "x64-mingw32"], and there's no compatible match between those two lists.
該当のソースコード
Gemfile
source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.6.6' gem 'rails', '~> 5.2.4', '>= 5.2.4.2' gem 'pg', '>= 0.18', '< 2.0' gem 'puma', '~> 3.11' gem 'sass-rails', '~> 5.0' gem 'uglifier', '>= 1.3.0' gem 'duktape' gem 'coffee-rails', '~> 4.2' gem 'turbolinks', '~> 5' gem 'jbuilder', '~> 2.5' group :development, :test do gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] end group :development do gem 'web-console', '>= 3.3.0' end group :test do gem 'capybara', '>= 2.15' gem 'selenium-webdriver' gem 'chromedriver-helper' end gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
補足情報
Windows 10 home 64ビット
ruby 2.6.6
Ruby on rails 5.2.4
PostgreSQL 12.2
テキストエディタ Atom
失礼な点があるかもしれませんがどうぞ宜しくおねがい致します。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/05/21 10:02