先安装libssh2,这样可以支持sftp
brew install libssh2
1.下载最新的curl包
https://curl.haxx.se/download/
2.解压到当前目录
3.进入解压后的目录内
4..配置,指定安装的目录,这里是“/usr/local/curl” 【加上with-libssh2是为了支持sftp】
./configure --prefix="/usr/local/curl" --with-libssh2 LIBS=-ldl
make
5.安装
sudo make install
安装好之后就在这个目录下,可以添加环境变量
/usr/local/curl/bin
使用 curl --version 检查是否更新成功