티스토리 뷰
When I run Jekyll in terminal, with
$ bundle exec jekyll serve &
I got Error message below
$ Dependency Error: Yikes! It looks like you don't have jekyll-include-cache 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 -- jekyll-include-cache' If you run into trouble, you can
find helpful resources at https://jekyllrb.com/help/!
To solve this error, First I added gem 'jekyll-include-cache'
Gemfile in root project path
$ vi Gemfile
source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins
gem 'jekyll-include-cache'
Still, another Error happened
$ Could not find gem 'jekyll-include-cache' in any of the gem sources listed in your Gemfile.
So, installed jekyll-include-cache
$ sudo gem install jekyll-include-cache
and then, I could build and run server
'Architecture > Back-End' 카테고리의 다른 글
[Trouble Shooting] How to solve DataSourceBeanCreationException (0) | 2019.09.13 |
---|---|
[Gradle] Gradle Caching and Builds (0) | 2019.09.10 |
[Spring Boot] How to create new spring boot project with customizing (0) | 2019.08.28 |
[TroubleShooting] runApplication not found (0) | 2019.08.27 |
[TroubleShooting] Deprecated Gradle features (0) | 2019.08.26 |
TAG
more
Recent Post