728x90
반응형
jekyll 로컬에서 돌리려고 bundle exec jekyll serve 명령어를 실행했는데 이런 에러가 떴다
처음에는 GitHub Metadata: No GitHub API authentication could be found. Some fields may be missing or have incorrect data. 이게 노란색으로 뜨길래 중요한 건줄 알고 찾은 방법 다 해봤는데도 계속 에러가 났다
To use retry middleware with Faraday v2.0+, install `faraday-retry` gem
Source: C:/project/_git_blog/develop-me-z.github.io
Destination: C:/project/_git_blog/develop-me-z.github.io/_site
Incremental build: disabled. Enable with --incremental
Generating...
Remote Theme: Using theme sproogen/resume-theme
GitHub Metadata: No GitHub API authentication could be found. Some fields may be missing or have incorrect data.
done in 3.132 seconds.
Auto-regeneration: enabled for 'C:/project/_git_blog/develop-me-z.github.io'
C:/project/_git_blog/develop-me-z.github.io/vendor/bundle/ruby/3.1.0/gems/jekyll-3.9.2/lib/jekyll/commands/serve/servlet.rb:3:in `require': cannot load such file -- webrick (LoadError)
중요한거는 `require': cannot load such file -- webrick (LoadError) 이 에러였다
webrick을 로드하지 못했다는 오류인데
bundle add webrick
을 해주고 다시 실행시키면 잘 돌아간다
이유는 ruby 3.0.0부터 webrick이 기본으로 포함된 gem에서 빠졌기 때문이라고 한다
728x90
반응형
'Git' 카테고리의 다른 글
[Git] warning: in the working copy of 'f1.txt', LF will be replaced by CRLF the next time Git touches it (0) | 2023.02.05 |
---|---|
[Git] init, status, add, config, commit (0) | 2023.02.04 |
[Git Blog] 루비 Ruby & 지킬 jekyll 설치 (Windows) (0) | 2023.01.22 |
[Git Blog] 깃블로그 만들기 (github.io) (0) | 2023.01.18 |
[Git] Git 설치하기 (Windows) (0) | 2023.01.18 |