anaconda update all possible packages?

前端 未结 6 1355
悲&欢浪女
悲&欢浪女 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 09:52

    Imagine the dependency graph of packages, when the number of packages grows large, the chance of encountering a conflict when upgrading/adding packages is much higher. To avoid this, simply create a new environment in Anaconda.

    Be frugal, install only what you need. For me, I installed the following packages in my new environment:

    • pandas
    • scikit-learn
    • matplotlib
    • notebook
    • keras

    And I have 84 packages in total.

提交回复
热议问题