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
- Windows
- cython
- openmp
- LaTeX
- datascience
- GSL
- portforwarding
- polyglot
- SSH
- tab space
- Matplotlib
- arXiver
- hyperref
- vim
- gfortran
- intel compiler
- HFS+
- jupyter
- cygwin
- virtual
- Visual Studio
- HDF5
- Anaconda
- vi
- conda
- mpi4py
- c++
- python
- MAC
- h5py
Archives
- Today
- Total
Astro Coke
[Jekyll] Dependency errors when gem bundles are updated 본문
bundle exec jekyll serve
로 jekyll을 구동할 때, 아래와 같이 Dependency error 가 발생하면,
Dependency Error: Yikes! It looks like you don't have kramdown-parser-gfm or one of its dependencies installed.
우회적인 방법으로 Gemfile 에서 버전을 고정해주는 방법이 있다.
우선
gem install kramdown-parser-gfm --user-install
로 패키지를 설치하고, 이후에도 여전히 Dependency error 가 똑같이 발생하면, Gemfile 을 열어
아래와 같이 plugin 의 버전을 고정해준다. (ex., v1.1.0 for kramdown-parser-gfm)
group :jekyll_plugins do
gem "jemoji", "~> 0.11.1"
gem "kramdown-parser-gfm", "~> 1.1.0"
end
'Computer Setup' 카테고리의 다른 글
[Mac] ahnlab safe transaction on Mac OSX (0) | 2020.12.18 |
---|---|
[Git] git merge between master and branches (0) | 2020.10.12 |
[Latex] pdflatex occasionally conflicts with hyperlink breaking (0) | 2020.08.16 |
[Windows] Python setup for Sub-Users (0) | 2020.07.29 |
[Conda] Add Virtual Environment to Jupyter Notebook (0) | 2020.06.12 |