How do you uninstall the package manager “pip”, if installed from source?

后端 未结 4 1968
再見小時候
再見小時候 2021-02-01 17:43

I was unaware that pip could be installed via my operating system\'s package manager, so I compiled and installed pip via source with the following command:

wget         


        
4条回答
  •  情歌与酒
    2021-02-01 18:07

    I was using above command but it was not working. This command worked for me:

    python -m pip uninstall pip setuptools
    

提交回复
热议问题