ピックアップ

Macnrbenvでエラー「error: failed to download ruby-x.x.x.tar.bz2」

Macを使っている中で、

rbenvを使ったバージョン変更時にエラーになった。

エラー

rbenvでのバージョン変更

$ rbenv install x.x.x
Downloading ruby-x.x.x.tar.bz2...
 :
error: failed to download ruby-x.x.x.tar.bz2

rerboseをつけて実行確認

$ rbenv install --verbose  x.x.x
Downloading ruby-x.x.x.tar.bz2...
 :
curl: (1) Protocol "https" not supported or disabled in libcurl
error: failed to download ruby-x.x.x.tar.bz2

エラー…

curl: (1) Protocol "https" not supported or disabled in libcurl

上記が対象なので、

Mac上での対応を調べる。

参考記事

https://github.com/git-ftp/git-ftp/issues/503

実際に対応した内容

brew install libssh2
brew install openssl
# in downloaded curl directory
./configure --with-libssh2 --with-ssl=/usr/local/opt/openssl
make
make install

ピックアップ

おすすめ書籍

コメント一覧

コメントはまだありません。

コメント送信

コメントを残す

広告

おすすめ記事