Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- NVM
- fromEvent
- Visual Studio Code
- aab 배포
- IONIC3
- angular5
- 테두리굵기
- Sentry
- Git
- 이미지바꾸기
- change detection
- 변화감지
- 자바스크립개념
- hashchange
- ion-range
- angular
- typescript
- VSCode
- sealize
- rxjs
- oh-my-zsh
- ChangeDetectorRef
- php
- JavaScript
- code .
- border-width
- error
- getElementsByClassName
- zsh
- Ionic
Archives
- Today
- Total
hsunny study blog
zsh: command not found: jekyll 본문
현상
jekyll 설치 확인을 위해 버전을 보려고 하니 오류가 발생
추가정보
-
발생한 때
$ jekyll -v
발생한 원인
$PATH 변수 설정 누락
해결방법
1. vim ~/.zshrc
~/.zshrc 파일에 아래 내용을 추가함
export PATH="[루비설치경로]/.gem/ruby/X.X.X/bin:$PATH"
X.X.X: 루비버전
2. source ~/.zshrc
변경사항 적용
3. jekyll -v
jekyll 버전확인
참고사이트
더보기
stackoverflow.com/questions/8146249/jekyll-command-not-found
Jekyll - command not found
I am trying to get Jekyll running but I have no experience with Ruby. As far as I can tell the installation of Jekyll has succeeded. However: $ jekyll Gives an error: -bash: jekyll: command not ...
stackoverflow.com
jekyllrb.com/docs/installation/macos/
Jekyll on macOS
Install Command Line Tools To install the command line tools to compile native extensions, open a terminal and run:
jekyllrb.com