前言
-
使用VM Ware 虚拟机安装了新版本 ubuntu 22.04,搭建嵌入式Linux 的开发环境,遇到一些依赖包的安装问题
-
在使用 curl 命令时发现 找不到 curl 命令,
Command 'curl' not found
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
Command 'curl' not found, but can be installed with:
sudo snap install curl # version 7.86.0, or
sudo apt install curl # version 7.81.0-1ubuntu1.6
See 'snap info curl' for additional versions.
安装 curl
- 安装的方法很简单,因为 ubuntu 已经有了提示:
$ sudo snap install curl
[sudo] password for zhangsz:
curl 7.86.0 from Wouter van Bommel (woutervb) installed
功能验证
- 安装好 curl 后,就可以正常的执行 curl 相关的操作了,如
zhangsz@zhangsz-virtual-machine:~$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 45769 100 45769 0 0 172k 0 --:--:-- --:--:-- --:--:-- 172k
小结
-
ubuntu 安装软件包依赖还是比较的简单,可以根据提示尝试安装文章来源:https://www.toymoban.com/news/detail-519934.html
-
curl 类似于 wget,也会经常使用文章来源地址https://www.toymoban.com/news/detail-519934.html
到了这里,关于ubuntu 22.04 安装 curl 的方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!