Reputation: 31
I downloaded shakyShane's plugin: https://github.com/shakyShane/jekyll-gulp-sass-browser-sync. While I am running gulp in directory with it, I am getting this error: https://i.sstatic.net/hgKt4.png.
I installed pygments before, because last error told, that I haven't installed this gem. I am windows 7 user.
Upvotes: 0
Views: 280
Reputation: 31
Ok, I found solution for all problems I had. First of all, I uninstalled Nodejs and Railsinstaller (windows user). Next deleted all data of npm in roaming folder. After that I installed node and railsinstaller, opened cmd and:
gem install jekyll
And:
gem install pygments
After that:
npm install -g gulp
Next I edited _config.yml file in master directory of plugin, changed default highlighter from pygments to rouge, and installed redcarpet gem by running this command:
gem install redcarpet
And that's it, gulp is running properly on my computer.
Upvotes: 1
Reputation: 2071
Looks like you have a problem with ruby gems - pygments. When you installed Ruby did you check the option to add it to your path?
I found this tutorial to get jekyll setup on windows
Upvotes: 0