conda创建虚拟环境、激活虚拟环境、安装依赖包时报错

1. conda创建虚拟环境、激活虚拟环境、安装依赖包时报错

conda create -n xxx python=3.6
conda activate xxx
conda install xxx

2. 问题描述

An unexpected error has occurred. Conda has prepared the above report.If submitted, this report will be used by core maintainers to improve future releases of conda.Would you like conda to send this report to the core maintainers?

conda创建虚拟环境、激活虚拟环境、安装依赖包时报错_第1张图片

3. 解决方案

conda clean -i

4. 分析

conda clean 命令大全

usage: conda clean [-h] [-a] [-i] [-p] [-t] [-f]
                   [-c TEMPFILES [TEMPFILES ...]] [-d] [--json] [-q] [-v] [-y]

Remove unused packages and caches.

Options:

optional arguments:
  -h, --help            Show this help message and exit.

Removal Targets:
  -a, --all             Remove index cache, lock files, 

你可能感兴趣的:(环境配置,anaconda)