anaconda update all possible packages?

前端 未结 6 1353
悲&欢浪女
悲&欢浪女 2020-12-12 09:12

I tried the conda search --outdated, there are lots of outdated packages, for example the scipy is 0.17.1 but the latest is 0.18.0. However, when I do the

6条回答
  •  轮回少年
    2020-12-12 10:12

    I solved this problem with conda and pip.

    Firstly, I run:

    conda uninstall qt and conda uninstall matplotlib and conda uninstall PyQt5

    After that, I opened the cmd and run this code that

    pip uninstall qt , pip uninstall matplotlib , pip uninstall PyQt5

    Lastly, You should install matplotlib in pip by this code that pip install matplotlib

提交回复
热议问题