1、docker镜像的配置(很重要,否则无法下载funannotate)
命令1(修改配置文件,添加镜像源)
vim /etc/docker/daemon.json
打开的文件添加以下内容: (来自:https://www.cnblogs.com/liuxinxin21d/articles/18359807)
{
"registry-mirrors": [
"https://dockerpull.com",
"https://docker.1panel.live",
"https://dockerproxy.cn",
"https://docker.hpcloud.cloud"
]}
为空文件就新建此文件daemon.json
命令2(重启docker)
systemctl restart docker
2、开始安装funannotate
详见https://funannotate.readthedocs.io/en/latest/install.html
# 拉取funannotate镜像(耗时较长)
docker pull nextgenusfs/funannotate
# 下载打包脚本(即调用命令)
wget -O funannotate-docker https://raw.githubusercontent.com/nextgenusfs/funannotate/master/funannotate-docker
# 测试安装
funannotate-docker test -t predict
注:
1、docker的离线安装方法:linux系统离线安装docker(分步法&一键法)_linux离线安装docker-CSDN博客