Chip-Seq分析过程 Multiqc 安装使用过程的问题

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
  • 参考:The 'pytz' distribution was not found and is required by Django解决办法

你可能感兴趣的:(Chip-Seq分析过程 Multiqc 安装使用过程的问题)