0

I've been trying to install Jekyll. I enter the following command:

gem install jekyll bundler

I receive error messages:

ERROR: Could not find a valid gem 'jekyll' (>= 0) in any repository

ERROR: Could not find a valid gem 'bundler' (>= 0) in any repository

My system: Windows 10 x64

ruby -v:

ruby 2.3.3p222 (2016-11-21 revision 56859) [x64-mingw32]

gem -v:

2.5.2

Community
  • 1
  • 1
Lechoo
  • 1
  • Have you tried http://stackoverflow.com/questions/9962051/could-not-find-a-valid-gem-in-any-repository-rubygame-and-others ? Note the comment about SSL. – Coolness Jan 15 '17 at 21:20

1 Answers1

0

Please check, if you have any source configure:

# gem sources
*** CURRENT SOURCES ***

https://rubygems.org

If not, please add the rubsgems source with

# gem sources -add https://rubygems.org

You should also perform an update of rubygems:

# gem update --system
deveth0
  • 488
  • 1
  • 5
  • 15