• Home
  • About
    • lahuman photo

      lahuman

      열심히 사는 아저씨

    • Learn More
    • Facebook
    • LinkedIn
    • Github
  • Posts
    • All Posts
    • All Tags
  • Projects

[2017-08-18] Jekyll가 Windows에서도 설치 된다.

18 Aug 2017

Reading time ~1 minute

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

다시 홈페이지 업데이트를 하자!



jekyllinstallwindows Share Tweet +1