创建conda环境时遇到以下错误: Found conflicts! Looking for incompatible packages.(包含conda卸载)

创建conda环境时遇到以下错误:
Found conflicts! Looking for incompatible packages.

之前没有遇到过这种问题,在网上搜索了一些帖子尝试升级和降级conda版本都没能解决。

有一个帖子说可能是之前用pip安装过软件(具体链接找不到了=_=),与conda有冲突,需要重新安装conda

先卸载再重新安装。

conda卸载

1.使用以下代码删除miniconda3文件夹

rm -rf miniconda3

2.vim删除bashrc文件中和conda有关的启动项(图来源于网络)
创建conda环境时遇到以下错误: Found conflicts! Looking for incompatible packages.(包含conda卸载)_第1张图片
3.激活

source  ~/.bashrc

4.重启一下电脑或服务器,查看conda --version

在这里插入图片描述

conda安装

安装conda借鉴的是这个

wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
source ~/.bashrc 

镜像选的是这个

# 下面四行配置北京外国语大学的conda的channel地址
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/ 
conda config --set show_channel_urls yes 

你可能感兴趣的:(linux,ubuntu虚拟机,学习记录,conda,linux)