一、conda下载multiqc出现报错
1.在fastqc环境中下载multiqc
代码语言:javascript复制conda install -c bioconda multiqc python=3
2.出现报错”RuntimeError: Click will abort further execution because Python 3 was configured to use ASCII as encoding for the environment
解决方法:
每次运行前设置编码环境变量
代码语言:javascript复制export LC_ALL=en_US.utf-8
export LANG=en_US.utf-8
二、Conda环境配置国内镜像源
- 阿里云
conda config --add channels https://mirrors.aliyun.com/anaconda/pkgs/main/
conda config --add channels https://mirrors.aliyun.com/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.aliyun.com/anaconda/cloud/bioconda/
2.北京外国语大学
代码语言:javascript复制conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/cloud/bioconda/
3.清华大学
代码语言:javascript复制conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
4.西安交通大学
代码语言:javascript复制conda config --add channels https://mirrors.xjtu.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.xjtu.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.xjtu.edu.cn/anaconda/cloud/bioconda/
删除镜像
代码语言:javascript复制conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
查看镜像
代码语言:javascript复制conda config --show channels
三、R语言不同版本切换
3.
4.
5.
6.