python中安装matplotlib显示unsuccessful initial attempt using frozen solve. Retrying with flexible solve.
时间: 2023-12-03 14:41:19 浏览: 146
关于python3.7安装matplotlib始终无法成功的问题的解决
5星 · 资源好评率100%
在Python中安装Matplotlib时,可能会遇到“unsuccessful initial attempt using frozen solve. Retrying with flexible solve”的问题。这通常是由于Conda环境中的某些软件包版本不兼容而导致的。为了解决这个问题,可以尝试以下几种方法:
1.更新Conda和Matplotlib软件包:
```shell
conda update conda
conda update matplotlib
```
2.使用清华镜像源安装Matplotlib:
```shell
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
conda install matplotlib
```
3.创建一个新的Conda环境并在其中安装Matplotlib:
```shell
conda create -n new_env
conda activate new_env
conda install matplotlib
```
阅读全文