RNA-seq常见报错

1、Solving environment: failed with initial frozen solve. Retrying with flexible solve.

# 更新conda
conda update -n base conda
conda update -all  #更新conda安装的所有软件
# 修改频道 
conda config --add channels conda-forge
conda config --set channel_priority flexible
#再安装所需软件的话就好了

2、RuntimeError: Click will abort further execution because Python 3 was configured to use ASCII as encoding for the environment. Consult https://click.palletsprojects.com/python3/ for mitigation steps.

export LC_ALL=en_US.utf-8
export LANG=en_US.utf-8
##Doing this each time will resolve the error

你可能感兴趣的:(RNA-seq常见报错)