1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

curlをupdateする(MAC)

Posted at

MACでcurlをupdateする際に少し戸惑ったので、メモしておく

公式docsの読み方がわからなかった(勉強不足)のであっているかはわからないが、
以下の方法で実行しました

# バージョン確認
$curl -V
⇨curl 7.64.0

# アンインストール 
$brew uninstall curl

# 再度インスール
# 環境の書き換えが必要な場合は処理する
$brew install curl

# バージョン確認
# 変わっていない場合はターミナルを再起動してみてください
$curl -V
⇨curl 7.87.0

簡単な方法だが、この方法で無事最新版がインストールできた。
もし他のきちんとした方法をご存知できたら、是非教えていただきたいです。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?