💍

gem Error : You don't have write permissions ....

2022/10/01に公開

You don't have write permissions for the /Library/Ruby/Gems/2.6.0 directory.

gemを初めて触ってみた時に出会いました。

  • 動作環境
    • OS : macOS monterey
    • shell : fish
ERROR:  While executing gem ... (Gem::FilePermissionError)
    You don't have write permissions for the /Library/Ruby/Gems/2.6.0 directory.

解決策

reference : https://github.com/rbenv/rbenv/issues/1267

export GEM_HOME="$HOME/.gem"

GEM_HOME変数を変更してあげる必要がありました。実行後、エラーは表示されませんでした:)

Discussion