摘要: 执行脚本 #!/bin/bash n=0 for i in $(cat b.txt) do echo $i pip install $i -i http://pypi.douban.com/simple/ --trusted-host=pypi.douban.com/simple #加上豆瓣源 le 阅读全文
posted @ 2020-12-02 16:33 hanjianfei 阅读(95) 评论(0) 推荐(0) 编辑
摘要: yum -y install net-tools 阅读全文
posted @ 2020-12-02 16:00 hanjianfei 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 总结du常用命令 du -h --max-depth=1 |grep [TG] |sort #查找上G和T的目录并排序 du -sh #统计当前目录的大小,以直观方式展现 du -h --max-depth=1 |grep 'G' |sort #查看上G目录并排序 du -sh --max-dept 阅读全文
posted @ 2020-12-02 15:50 hanjianfei 阅读(203) 评论(0) 推荐(0) 编辑
摘要: CentOS7 安装Python3.6.8 1. 安装依赖环境 yum -y groupinstall "Development tools" yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel 阅读全文
posted @ 2020-12-02 10:11 hanjianfei 阅读(371) 评论(0) 推荐(0) 编辑