관리 메뉴

Leo's Garage

Ruby reinstall and jekyll themes 적용 본문

Study

Ruby reinstall and jekyll themes 적용

LeoBehindK 2024. 3. 15. 00:00
728x90
반응형

Mac에서 Ruby를 update할 때는 아래와 같이 수행하자.

이 경우, rbenv로 버전을 관리할 수 있다.

  • rbenv 설치
brew install rbenv ruby-build
  • ruby 설치
rbenv install 2.x.x
  • ruby 버전 번경
rbenv global 2.x.x
rbenv local 2.x.x
  • ruby path 수정
echo 'export PATH="$HOME/.rbenv/shims:$PATH"' >> ~/.zshrc
echo 'eval "$(rbenv init -)"' >> ~/.zshrc
source ~/.zshrc

 

이후에 reby Gem을 이용하여 jekyll themes를 적용할 때는 아래를 수행한다. 

bundle install
bundle exec jekyll serve
728x90
반응형
Comments