Conda uninstall one package and one package only

后端 未结 1 903
灰色年华
灰色年华 2020-12-04 19:18

When I try to uninstall pandas from my conda virtual env, I see that it tries to uninstall more packages as well:

$ conda uninstall         


        
相关标签:
1条回答
  • 2020-12-04 19:35

    You can use conda remove --force.

    The documentation says:

    --force               Forces removal of a package without removing packages
                          that depend on it. Using this option will usually
                          leave your environment in a broken and inconsistent
                          state
    
    0 讨论(0)
提交回复
热议问题