LoginSignup
10
3

More than 5 years have passed since last update.

go get しようとしたら SSL protocol error エラーが出るとき

Last updated at Posted at 2016-11-28

問題

go get できない…

$ go get github.com/revel/revel

# cd .; git clone https://gopkg.in/fsnotify.v1 /Users/xxxxxxx/go/src/gopkg.in/fsnotify.v1
Cloning into '/Users/xxxxxxx/go/src/gopkg.in/fsnotify.v1'...
fatal: unable to access 'https://gopkg.in/fsnotify.v1/': Unknown SSL protocol error in connection to gopkg.in:-9838
package gopkg.in/fsnotify.v1: exit status 128

解決策

$ git config --global http.sslVerify true

参考

10
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
3