How to uninstall package in Anaconda installed with pip

后端 未结 3 494
醉酒成梦
醉酒成梦 2021-02-02 12:17

The problem:

I have installed Anaconda:

conda -V
conda 4.4.7

Also I installed a lot of packages for it using pyt

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-02 13:09

    You can use Jupyter Notebook to solve this problem :

    • open Jupyter Notebook
    • open a new notebook with the right kernel
    • type !pip uninstall -y [package] in a code cell
    • run the cell code

提交回复
热议问题