Форум сайта python.su
Всем доброго времени суток!
Столкнулся с такой проблемой. Есть программа, должна при установке размещаться в разных папках (настройки в /etc, скрипт запуска в /etc/init.d и /usr/bin и тд). Написал setup.py, используя distutils. При команде
sudo python setup.py -v install
python setup.py -h
Common commands: (see '--help-commands' for more)
setup.py build will build the package underneath 'build/'
setup.py install will install the package
Global options:
--verbose (-v) run verbosely (default)
--quiet (-q) run quietly (turns verbosity off)
--dry-run (-n) don't actually do anything
--help (-h) show detailed help message
--command-packages list of packages that provide distutils commands
Information display options (just display information, ignore any commands)
--help-commands list all available commands
--name print package name
--version (-V) print package version
--fullname print <package name>-<version>
--author print the author's name
--author-email print the author's email address
--maintainer print the maintainer's name
--maintainer-email print the maintainer's email address
--contact print the maintainer's name if known, else the author's
--contact-email print the maintainer's email address if known, else the
author's
--url print the URL for this package
--license print the license of the package
--licence alias for --license
--description print the package description
--long-description print the long package description
--platforms print the list of platforms
--classifiers print the list of classifiers
--keywords print the list of keywords
--provides print the list of packages/modules provided
--requires print the list of packages/modules required
--obsoletes print the list of packages/modules made obsolete
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
Офлайн
Удаления нет
Офлайн
Спасибо!
Тогда такой вопрос - есть ли в какой-нибудь из всех этих утилит установки/удаления(setuptools, distutils и тд) нормальное удаление? Примерно такое же как у make. Собирать пакеты каждый раз напряжно…
Офлайн
pip uninstall - но пакет лучше делать через distribute
Офлайн
Спасибо еще раз!
Андрей Светловговоря про пакет вы имеете в виду python-пакет? Просто я с налету не понял - в прошлом посте я имел в виду deb-пакет.
pip uninstall - но пакет лучше делать через distribute
Офлайн
python setup.py install устанавливает именно питоновский пакет. apt-get о нем ничего не знает.
Т.е. берем distribute. Пишем для него setup.py. Ставим. Потом через pip можно удалить.
Офлайн