[maemo-developers] how to make install package for applications written in python
From: Diego Escalante dieguito at gmail.comDate: Tue Apr 24 23:06:44 EEST 2007
- Previous message: how to make install package for applications written in python
- Next message: how to make install package for applications written in python
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
In case it's useful for someone, when I play with setuptools in python and do: $ sudo python setup.py install I later find myself looking for setup.py uninstall, sadly there's no uninstall. So the other day I came to this solution: $ sudo ./setup.py install --record a $ for i in `cat a`; do echo "bye $i"; sudo rm -f $i; done Hope it helps someone!.
- Previous message: how to make install package for applications written in python
- Next message: how to make install package for applications written in python
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]