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

后端 未结 4 1957
再見小時候
再見小時候 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

    If you installed pip like this:

     - sudo apt install python-pip
     - sudo apt install python3-pip
    

    Uninstall them like this:

     - sudo apt remove python-pip
     - sudo apt remove python3-pip
    

提交回复
热议问题