Profile picture

[WSL] WSL 우분투(Ubuntu)에서 Jekyll 설치하기

JaehyoJJAng2024년 02월 25일

► 설치


1. 패키지 DB 업데이트

sudo apt-get update -y

2. 의존성 패키지 설치

sudo apt-get install ruby-full build-essential zlib1g-dev

3. 젬 설치 경로를 설정하는 환경변수들을 ~/.bashrc 파일에 추가

echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

4. Jekyll 설치

gem install jekyll bundler

5. Github Pages 프로젝트 clone

git clone https://github.com/mmistakes/minimal-mistakes
cd minimal-mistakes

6. bundle 설치

bundle install

7. Jekyll 실행

bundle exec jekyll server --unpublished

Loading script...