rails webpacker:installでエラー
rails webpacker:install
を実行したところ
rails webpacker:install
rails aborted!
Don't know how to build task 'webpacker:install' (See the list of available tasks with `rails --tasks`)
上記エラーが表示されてた。
対処法
Gemfileに
gem 'webpacker', '~> 3.0'
を追記してbundle update
を行いその後改めてrails webpacker:install
で解決した。