摘要: 001、python版本 和 pip版本 a、python版本 [root@PC1 pip]# python --version Python 3.11.3 b、pip版本 [root@PC1 Python-3.11.3]# pip --version pip 23.1.2 from /usr/lo 阅读全文
posted @ 2023-05-15 23:11 小鲨鱼2018 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 001、在利用python2.7环境下利用pip安装pyfaidx模块时报如下错误: ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command out 阅读全文
posted @ 2023-05-15 23:00 小鲨鱼2018 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: python2.7中安装pip命令 001、 [root@PC1 test]# pip bash: pip: command not found... 002、 [root@PC1 test]# cat /etc/redhat-release 003、 [root@PC1 software]# cu 阅读全文
posted @ 2023-05-15 13:20 小鲨鱼2018 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 001 下载静态软件 wget https://github.com/shenwei356/seqkit/releases/download/v2.4.0/seqkit_linux_amd64.tar.gz 002、解压 tar -xzvf seqkit_linux_amd64.tar.gz 003 阅读全文
posted @ 2023-05-15 12:43 小鲨鱼2018 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 2>&1 & 0:标准输入 1:标准输出 2:标准错误输出 command 2>&1 > file.txt:将标准输出输出到file中,标准错误输出输出屏幕 command > file.txt 2>&1: 将标准错误输出 输出到标准输出中。 command 2> error.txt 1> righ 阅读全文
posted @ 2023-05-15 00:37 小鲨鱼2018 阅读(686) 评论(0) 推荐(0) 编辑