본문 바로가기
GitHub

Install missing gem executables with `bundle install` 오류 해결

by Pstor 2022. 6. 27.

문제점 :

$ 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

 

반응형

'GitHub' 카테고리의 다른 글

Github 숨겨진 기능  (0) 2022.10.29
Github annual global developer  (0) 2022.09.02
GitHub Copilot  (0) 2022.06.24
Github Campus Expert  (0) 2021.10.14
깃허브 다크모드 (github dark mode)  (0) 2021.08.13