Work/Tools

[jekyll] 로컬에서 구동시 Dependency Error 문제 해결하기

디쟈이너 2020. 11. 14. 00:20

로컬에서 지킬을 실행하기 위해 아래와 같은 명령어를 사용한다.

bundle exec jekyll serve

 

맥에서 작업할 땐 별다른 이슈가 없었는데, 윈도우에서 작업하려 하니 디펜던시 에러가 발생했다.

  Dependency Error: Yikes! It looks like you don't have kramdown-parser-gfm or one of its dependencies installed. In order to use Jekyll as currently configured, you'll need to install this gem. The full 
error message from Ruby is: 'cannot load such file -- kramdown-parser-gfm' If you run into trouble, you can find helpful resources at https://jekyllrb.com/help/!
  Conversion error: Jekyll::Converters::Markdown encountered an error while converting '_posts/~.md':
                    kramdown-parser-gfm
             ERROR: YOUR SITE COULD NOT BE BUILT:
                    ------------------------------------
                    kramdown-parser-gfm

이 경우, Gemfile 을 열어서 gem "kramdown-parser-gfm" 항목을 추가한다.
그리고 bundle install 로 설치를 진행한다.
이후 bundle exec jekyll serve 명령어로 정상적으로 실행 되는걸 확인할 수 있다.

반응형

'Work > Tools' 카테고리의 다른 글

[Markdown] 마크다운으로 새 탭에서 링크 열기  (0) 2021.04.26
Tailwind - 기본 개념  (0) 2021.01.19
구글링 잘 하는 방법  (0) 2020.11.23
[VScode] 자주 사용하는 단축키 정리  (0) 2020.11.14
[iterm2] 유용한 단축키  (0) 2020.11.14