问题提示:

Command 'curl' not found, but can be installed with: apt install curl

原因:系统没有安装curl。

ubuntu/debian 系统安装 Curl 方法:

apt-get update -y && apt-get install curl -y

centos 系统安装 Curl 方法:

yum update -y && yum install curl -y