想卸載python的庫numpy,執行pip uninstall gunicorn,報錯如下:
Not uninstalling numpy at /usr/lib/python2.7/dist-packages, outside environment /usr
這是因為當時安裝python中的numpy的時候,不是通過pip安裝的,而是通過apt安裝的,所以需要用apt卸載,而不能用pip卸載,執行:
sudo apt remove python-numpy
https://askubuntu.com/questions/926911/unable-to-uninstall-programs-using-sudo-pip/926914