jekyll serve dependency error - Could not open 'lib curl'

前端 未结 4 927
你的背包
你的背包 2020-12-10 21:11

I am trying to run bundle exec jekyll serve but it comes up with the error:

Dependency Error: Yikes! It looks like you don\'t have jekyll-remote-t

4条回答
  •  自闭症患者
    2020-12-10 22:05

    The problem I see is mixing the usage of bundle and gem commands, considering you have a Gemfile with just the github-pages gem in your Jekyll root path, do this:

    bundle install
    bundle exec jekyll serve
    

    That should create a folder with all needed dependencies and then execute the newly installed Jekyll version.

提交回复
热议问题