无法在 conda 中安装 matplotlib
Fail to install matplotlib in conda
我尝试使用 conda install matplotlib
安装 matplotlib
,但出现此错误:
UnsatisfiableError: The following specifications were found to be in
conflict:
- matplotlib
- python 3.6*
我该如何处理这个问题?谢谢
我认为某些依赖项已过时。
试试这个命令:
conda install -c conda-forge matplotlib=2.0.0
我尝试使用以下方法安装 matplotlib:
python -m pip install -U matplotlib
这是在我目前的Anaconda虚拟环境下完成的。因此,我使用的pip对应的是我虚拟环境中的python版本。
我尝试使用 conda install matplotlib
安装 matplotlib
,但出现此错误:
UnsatisfiableError: The following specifications were found to be in conflict: - matplotlib - python 3.6*
我该如何处理这个问题?谢谢
我认为某些依赖项已过时。
试试这个命令:
conda install -c conda-forge matplotlib=2.0.0
我尝试使用以下方法安装 matplotlib:
python -m pip install -U matplotlib
这是在我目前的Anaconda虚拟环境下完成的。因此,我使用的pip对应的是我虚拟环境中的python版本。