jekyll 에러 해결하기 - It looks like you don't have jekyll-paginate or one of its dependencies installed...
[문제내용]
github.io 블로그 만들기 위해서 jekyll의 lanyon 스킨을 선택했습니다 (https://lanyon.getpoole.com/)
그리고 안내사항대로 따라하려다가 jekyll-paginate 에러가 발생했습니다.
$ bundle exec jekyll serve
Configuration file: /Users/seokangchoi/Documents/ek_projects/eunkangchoi.github.io/_config.yml
Dependency Error: Yikes! It looks like you don't have jekyll-paginate or one of its dependencies installed. In order to use Jekyll as currently configured, you'll need to install this gem. If you've run Jekyll with `bundle exec`, ensure that you have included the jekyll-paginate gem in your Gemfile as well. The full error message from Ruby is: 'cannot load such file -- jekyll-paginate' If you run into trouble, you can find helpful resources at https://jekyllrb.com/help/!
------------------------------------------------
Jekyll 4.2.2 Please append `--trace` to the `serve` command
for any additional information or backtrace.
------------------------------------------------
[해결책]
Gemfile에 gem "jekyll-paginate" 를 추가합니다.
$ vim Gemfile
gem "jekyll-paginate"
Gemfile 저장후 아래 명령어를 실행하면 정상적으로 로컬(127.0.0.1:4000)에서 동작이 됩니다.
$ bundle install
$ bundle exec jekyll serve --trace
[참고] 맨위의 링크의 방법을 참고해서 해결했습니다.
[github blog] 로컬 github blog 실행시 jekyll plugin dependency 에러 해결 방법
>> bundle exec jekyll serve Configuration file: /.../[username].github.io/_config.yml Dependency Error: Yikes! It looks like you don't have jekyll-category-pages or one of its dependencies installed..
smelting.tistory.com
jekyll 오류 해결 (부제: github 블로그 만들기)
jekyll 오류 해결 (github page 만들기)
velog.io
don't have jekyll-paginate or one of its dependencies installed
I have installed this jekyll theme. But faced with one issue. If I do: bundle exec jekyll serve All work fine (_site folder contains necessary files and server is running), but if I use the foll...
stackoverflow.com