Pip 如何卸载xgboost python包?

Pip 如何卸载xgboost python包?,pip,xgboost,Pip,Xgboost,我已经在我的系统(Ubuntu 16.04)上构建并安装了XGBoost。具体地说,我已经在运行中安装了它 python3 setup.py安装--用户 在其python包目录中 我现在如何卸载它 当我尝试使用pip3时,我得到: ->pip3卸载xgboost 不在/home/fanta/.local/lib/python3.5/site-packages/xgboost-0.7-py3.5.egg卸载xgboost,外部环境/home/fanta/.local/python3.5 我正在Ub

我已经在我的系统(Ubuntu 16.04)上构建并安装了XGBoost。具体地说,我已经在运行中安装了它

python3 setup.py安装--用户

在其
python包
目录中

我现在如何卸载它

当我尝试使用pip3时,我得到:

->pip3卸载xgboost

不在/home/fanta/.local/lib/python3.5/site-packages/xgboost-0.7-py3.5.egg卸载xgboost,外部环境/home/fanta/.local/python3.5


我正在Ubuntu 16.04下使用virtualenv。

使用
python setup.py install手动安装的软件包不应使用
pip uninstall
卸载。您必须自己删除文件和目录。删除
/home/fanta/.local/lib/python3.5/site包/xgboost-0.7-py3.5.egg


下次您可以使用源代码目录中的
pip install.
安装东西。

使用
python setup.py install手动安装的包不应使用
pip uninstall
卸载。您必须自己删除文件和目录。删除
/home/fanta/.local/lib/python3.5/site包/xgboost-0.7-py3.5.egg

下次您可以使用源代码目录中的
pip install.
安装东西