Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 798 Bytes

installed_jekyll.md

File metadata and controls

29 lines (19 loc) · 798 Bytes

Abnormal

Problems encountered in the installation of Jekyll

installed_jekyll.md

1.download RubyInstaller

address: https://www.ruby-lang.org/en/documentation/installation/      https://rubyinstaller.org/ (windows)

2.gem install jekyll

(1) SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed

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

Solve the problem:

$ gem sources --remove http://rubygems.org/
$ gem sources -a http://gems.ruby-china.org/  (RubyGems 镜像- Ruby China)
$ gem sources -l
*** CURRENT SOURCES ***
http://gems.ruby-china.org/ 
$ gem install jekyll

ok

Very nice