Post

Jekyll 블로그 오류 해결: bundler failed to load command jekyll

에러 발생

  • github blog에 type-tyhme를 적용하려고 가이드를 따라 명령어를 실행시켰으나 아래와 같은 오류가 발생하였습니다.

webrick 설치 전

원인

  • 위와 같은 에러가 발생한 이유는 webrick이 더 이상 Ruby 3.0의 번들이 아니기 때문입니다.(github issue)

해결

  • 아래 명령어로 webrick을 추가 후 다시 명령어를 실행합니다.
    1
    
      bundle add webrick
    
webrick 설치

webrick 설치 후

This post is licensed under CC BY 4.0 by the author.