Anaconda 下載multiqc軟件后運行命令報錯:
multiqc *zip -o ./multiqc/
- 報錯原因:python版本問題
- Debug:
conda create --name python3 python=3.6 #下載python3.6版本
source activate python3 #激活A(yù)naconda的python3環(huán)境
source activate chipseq
conda install multiqc python=3.6 #在chipseq環(huán)境下用指定python3.6版本下載multiqc
multiqc *zip -o ./multiqc/ #運行multiqc
#*zip表示fastqc得到的SRR6795670_1_fastqc.zip一系列文件
- 繼續(xù)報錯:pkg_resources.DistributionNotFound: The 'monotonic' distribution was not found and is required by humanfriendly
- Debug:
python -m pip install monotonic