Gem :: InstallError: Собственный гем 'http_parser.rb' требует установленных инструментов сборки. Веб-сайт Jekyll - PullRequest
0 голосов
/ 18 января 2019

Я пытаюсь создать новый сайт, используя этот шаблон jekyll (https://themeforest.net/item/toile-responsive-jekyll-theme-for-bloggers-and-writers/23079570).

Но когда я запускаю команду "bundle install", я получаю следующую ошибку кода:

Installing http_parser.rb 0.6.0 with native extensions
Gem::InstallError: The 'http_parser.rb' native gem requires installed 
build
tools.

Please update your PATH to include build tools or download the DevKit
from 'http://rubyinstaller.org/downloads' and follow the instructions
at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'
An error occurred while installing http_parser.rb (0.6.0), and Bundler 
cannot
continue.
Make sure that `gem install http_parser.rb -v '0.6.0' --source
'https://rubygems.org/'` succeeds before bundling.

Не могли бы вы помочь? :)

Заранее спасибо сообществу!

Ps: я не разработчик, просто любопытный и мотивированный парень, пытающийся заставить этот шаблон работать.

Я внимательно следил за «правильной» установкой, описанной здесь: http://jekyll -windows.juthilo.com / 1-ruby-and-devkit /

Более того, я вижу конфигурационный файл DevKit в моем C: и путь кажется ОК, поэтому я не понимаю.

PS C:\Users\Matthis\Desktop\EtoileOK\etoile> bundle install
Fetching gem metadata from https://rubygems.org/...........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Using public_suffix 3.0.3
Using addressable 2.5.2
Using bundler 2.0.1
Using colorator 1.1.0
Using concurrent-ruby 1.1.4
Using eventmachine 1.2.7 (x64-mingw32)
Fetching http_parser.rb 0.6.0
Installing http_parser.rb 0.6.0 with native extensions
Gem::InstallError: The 'http_parser.rb' native gem requires installed 
build
tools.

Please update your PATH to include build tools or download the DevKit
from 'http://rubyinstaller.org/downloads' and follow the instructions
at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'

An error occurred while installing http_parser.rb (0.6.0), and Bundler 
cannot
continue.
Make sure that `gem install http_parser.rb -v '0.6.0' --source
'https://rubygems.org/'` succeeds before bundling.

In Gemfile:
 jekyll-livereload was resolved to 0.2.2, which depends on
em-websocket was resolved to 0.5.1, which depends on
  http_parser.rb
PS C:\Users\Matthis\Desktop\EtoileOK\etoile>

Я просто хотел бы понять, как решить эту проблему, чтобы я мог начать работу над своим личным сайтом:)

Заранее спасибо сообществу! ;)

Мэтт

...