Si vous programmez avec python, et voulez distribuer votre jolie petite application toute fraîche, vous avez dut faire un fichier setup.py utilisant la bibliothèque distutils ou encore setuptools, qui permet l’installation de votre application grâce à :
1 | python setup.py install |
(En utilisant sudo si nécessaire.)
Mais si vous tapez python setup.py uninstall vous aurez cette erreur :
1 2 3 4 5 6 7 8 | # python setup.py uninstall --prefix=/usr/local usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: setup.py --help [cmd1 cmd2 ...] or: setup.py --help-commands or: setup.py cmd --help error: invalid command 'uninstall' |















