LoginSignup
1
2

More than 5 years have passed since last update.

bundle commond not foundの解決方法

Posted at

前提条件

Homebrew 0.9.5
rbenv 0.4.0
MacOS 10.10(Yosemite)
bundler 1.7.6
Ruby 2.1.5

bundle installしたらbundle command not foundに

解決方法
$ vim ~/.bash_profile

.bash_profile

# bundlerのパスを通すため↲
path=(↲
  /usr/local/{bin,sbin}↲
  /Users/user_name/.rbenv/versions/2.1.5/bin↲
  $path)

これを保存して、もう一度

bundle install

すると実行できた

参考:Bundlerのインストール時に、初めてgemをインストールするときに詰まったこと。

1
2
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
1
2