$
samtools
samtools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory
解决方式
conda install -c bioconda samtools=1.9 --force-reinstall
但是因为我的conda版本:
$
conda --version
conda 4.5.11
没有--force-reinstall参数
直接
conda install -c bioconda samtools=1.9
就好了
网友评论