正在卸载从 github 克隆安装的 python 库

Uninstalling python library installed from github clone

你能告诉我如何卸载我通过克隆 Theano Git 存储库开发的 Theano 吗?

我有:

$pip freeze | grep Theano
-e git://github.com/Theano/Theano.git@18319b8f426e99fa209c4910af7208c0d51c41a6#egg=Theano

sudo pip uninstall Theano returns Can't uninstall 'Theano'. No files were found to uninstall.

sudo pip install Theano 给出:

Requirement already satisfied (use --upgrade to upgrade): theano in ./Theano
Requirement already satisfied (use --upgrade to upgrade): numpy>=1.7.1 in /usr/local/lib/python2.7/dist-packages/numpy-1.12.0.dev0+1436ec3-py2.7-linux-x86_64.egg (from theano)
Requirement already satisfied (use --upgrade to upgrade): scipy>=0.11 in /usr/local/lib/python2.7/dist-packages (from theano)
Requirement already satisfied (use --upgrade to upgrade): six>=1.9.0 in /usr/local/lib/python2.7/dist-packages (from theano)

找出它的安装位置:

$ which Theano

并将其删除。

依赖项不会对您造成任何伤害,可以保留在原地。如果你想删除它们,你可以,但要小心,因为其他包很可能需要它们。

您可能不在安装 Theano 的目录中。

我想,你有以下选择::

$ pip uninstall Theano/

这对我有用(使用 moto 测试,因为安装 Theano 需要一些编译包,这些包是 在我的机器上失败)。

另一种选择是 cd 到 Theano 目录并从这里卸载::

$ cd Theano
$ pip uninstall theano

如果 none 有效,最后一个选项是通过删除 Theano.egg-link 文件.

假设您正在使用名为 testtheano::

的 virtualenv
$ cd ~/.virtualenvs/testtheano/lib/python2.7/site-packages
$ rm Theano.egg-link

如果它安装了一些脚本,也将它们删除:

$ cd ~/.virtualenvs/testtheano/bin
$ rm <all-the-theano-scripts>

您可以简单地从 /opt/anaconda/lib/pythonXX/site-packages 中删除 Theano 目录和 egg 文件。