0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

「command not found: rubocop」のエラーが出てしまい、rubocopコマンドが実行できない

Posted at

背景

  • 下記の手順でRubyのコード解析ツール「Rubocop」の利用を試みたが、表題のエラーが出てしまい実行できませんでした。
Gemfile
group :development do
  gem 'rubocop'
  gem 'rubocop-rails'
$ bundle install
$ rubocop
zsh: command not found: rubocop

解決策

以下のコマンドを実行したところ、rubocopコマンドが使えるようになりました。

$ rbenv rehash
$ rubocop
Inspecting 44 files
.
.
.
  • rbenvを利用している場合、bundle installを実行しただけではshimディレクトリが更新されないため、実行できないようです。
  • rbenv rehashを実行することで、どのディレクトリにいてもrubocopコマンドが使えるようになりました!

参考になれば幸いです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?