Anaconda 下载multiqc软件后运行命令报错:
multiqc *zip -o ./multiqc/
image.png- 报错原因:python版本问题
- Debug:
conda create --name python3 python=3.6 #下载python3.6版本
source activate python3 #激活Anaconda的python3环境
source activate chipseq
conda install multiqc python=3.6 #在chipseq环境下用指定python3.6版本下载multiqc
multiqc *zip -o ./multiqc/ #运行multiqc
#*zip表示fastqc得到的SRR6795670_1_fastqc.zip一系列文件
- 继续报错:pkg_resources.DistributionNotFound: The 'monotonic' distribution was not found and is required by humanfriendly
- Debug:
python -m pip install monotonic
网友评论