在Linux下下载并安装tree命令
使用环境:Ubuntu16.04安装Tree今天在远程其他设备的时候,想看一下目录结构,tree回车居然提示需要安装…第一次知道tree原来也需要安装wget http://mama.indstate.edu/users/ice/tree/src/tree-1.7.0.tgz谁知道连wget也没有,于是乎,先安装wget然后再安装tree[jmWang0@gpu07 detectron2]$ wg
·
使用环境:Ubuntu16.04
安装Tree
今天在远程其他设备的时候,想看一下目录结构,tree回车居然提示需要安装…第一次知道tree原来也需要安装
wget http://mama.indstate.edu/users/ice/tree/src/tree-1.7.0.tgz
谁知道连wget也没有,于是乎,先安装wget然后再安装tree
[jmWang0@gpu07 detectron2]$ wget http://mama.indstate.edu/users/ice/tree/src/tree-1.7.0.tgz
-bash: wget: 未找到命令
[jmWang0@gpu07 detectron2]$ sudo yum -y install wget
[jmWang0@gpu07 detectron2]$ wget http://mama.indstate.edu/users/ice/tree/src/tree-1.7.0.tgz
--2020-07-21 09:51:33-- http://mama.indstate.edu/users/ice/tree/src/tree-1.7.0.tgz
正在解析主机 mama.indstate.edu (mama.indstate.edu)... 139.102.70.201
正在连接 mama.indstate.edu (mama.indstate.edu)|139.102.70.201|:80... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:47082 (46K) [application/x-gzip]
正在保存至: “tree-1.7.0.tgz”
100%[========================================================================>] 47,082 39.6KB/s 用时 1.2s
2020-07-21 09:51:35 (39.6 KB/s) - 已保存 “tree-1.7.0.tgz” [47082/47082])
接着一套连招
tar zxvf tree-1.7.0.tgz
cd tree-1.7.0
make
sudo cp tree /bin
试运行tree…
[jmWang0@gpu07 demo]$ tree
.
├── demo.py
├── predictor.py
├── __pycache__
│ └── predictor.cpython-36.pyc
└── README.md
1 directory, 4 files
OK,出现目录结构,可以了.安装成功
更多推荐
已为社区贡献1条内容
所有评论(0)