在Debian 11 环境下执行curl命令,提示:
-bash: curl: command not found
解决方案:
1、升级系统
sudo apt update && sudo apt upgrade
nat机没有sudo,可以省略sudo,后续同理,即
apt update && apt upgrade
2、执行安装
apt install curl
或者
apt-get install curl
之后安装都可以用
apt install curl
或
apt-get install curl
卸载则是,xx表示你要卸载的软件
apt uninstall xx;