有时直接conda安装包时会出错;报错PackagesNotFoundError: The following packages are not available from current channels
比如
conda install -y bioconda::ucsc-gtftogenepred #直接安装报错
#直接下载压缩包安装https://blog.csdn.net/weixin_45552562/article/details/109668589;安装ok
wget https://anaconda.org/bioconda/ucsc-gtftogenepred/447/download/linux-64/ucsc-gtftogenepred-447-h2a80c09_1.tar.bz2
conda install -y ./software/ucsc-gtftogenepred-447-h2a80c09_1.tar.bz2
#安装成功
参考
PackagesNotFoundError: The following packages are not available from current channels的解决办法-CSDN博客