Jekyll Windows 설치
몇가지 방법이 제시되고 있는데, 내가 실행한 것은 루비 인스톨러를 이용한 설치 이다.
RubyInstaller 를 설치 하고 다음과 같은 명령어를 이용하여 Jekyll을 설치 한다.
$> gem.cmd install jekyll bundler
$> jekyll -v
jekyll 3.5.2
내가 사용하는 Moon 스킨을 쓰기 위해 다음과 같은 추가 작업 필요 하다.
$> bundle install --gemfile $PATH$\Moon\Gemfile
이후 빌드시 다음과 같은 오류가 발생하면,
$> jekyll build --source Moon --destination lahuman.github.io
Configuration file: Moon/_config.yml
Deprecation: The 'gems' configuration option has been renamed to 'plugin'. Please update your config file accordingly.
Dependency Error: Yikes! It looks like you don't have jekyll-sitemap or one o
its dependencies installed. In order to use Jekyll as currently configured, yo
'll need to install this gem. The full error message from Ruby is: 'Unable to a
tivate jekyll-sitemap-0.11.0, because addressable-2.5.1 conflicts with addressa
le (~> 2.4.0)' If you run into trouble, you can find helpful resources at https
//jekyllrb.com/help/!
jekyll 3.5.2 | Error: jekyll-sitemap
다음 명령어를 추가적으로 실행 하면 된다.
$> gem install jekyll-sitemap