Install missing gem executables with bundle install 오류 해결
bundle install 오류 해결
문제점 :
$ bundle exec jekyll serve
bundler: command not found: jekyll
Install missing gem executables with `bundle install`
해결 :
$ rm .bundle/config #손상된 번들 제거
$ gem update --system
$ gem update bundler
$ bundle install
댓글남기기