25
11

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 5 years have passed since last update.

rails c 時の Library not loaded: /usr/local/opt/readline/lib/libreadline.7.dylib (LoadError) 解決方法

Last updated at Posted at 2019-01-28

環境

  • Ruby 2.6.0
  • Rails 5.2.2
  • MacOS

症状

rails c でコンソール起動時に

dlopen(/{ユーザーのパス}/.rbenv/versions/2.6.0/lib/ruby/2.6.0/x86_64-darwin17/readline.bundle, 9): Library not loaded: /usr/local/opt/readline/lib/libreadline.7.dylib (LoadError)
Referenced from: /{ユーザーのパス}/.rbenv/versions/2.6.0/lib/ruby/2.6.0/x86_64-darwin17/readline.bundle
Reason: image not found - /{ユーザーのパス}/.rbenv/versions/2.6.0/lib/ruby/2.6.0/x86_64-darwin17/readline.bundle

解決法

https://github.com/rails/rails/issues/26658
ここらへんを参考に、gem fileのdevelopmentグループにを追加

Gemfile

group :development do
...
  gem 'rb-readline'
end
25
11
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
25
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?