Python Setuptools へのインストール後のスクリプトの統合
Setupscript は、Python プロジェクトを管理および配布するための優れたツールになりました。これにより、開発者はインストール後の手順を含むさまざまなタスクを自動化できます。この記事では、インストール後の Python スクリプトを setuptools セットアップに統合する方法について説明します。
セットアップ スクリプトの変更
インストール後のスクリプトを指定するには、 setup.py ファイル。これには、インストール完了時にスクリプトを実行するカスタム インストール コマンドを作成する必要があります。以下に例を示します。
from setuptools import setup from setuptools.command.install import install class PostInstallCommand(install): def run(self): install.run(self) # Call your post-install script or function here setup( ..., cmdclass={ 'install': PostInstallCommand, }, ... )
開発モードとインストール モード
開発モードとインストール モードでは、異なるポストインストール スクリプトが必要になる可能性があることを考慮してください。これらのシナリオを処理する個別のコマンドを作成し、それらを cmdclass 引数に含めることができます。
class PostDevelopCommand(develop): def run(self): develop.run(self) # Add development-specific post-install script here class PostInstallCommand(install): def run(self): install.run(self) # Add installation-specific post-install script here setup( ..., cmdclass={ 'develop': PostDevelopCommand, 'install': PostInstallCommand, }, ... )
シェル コマンド
シェル コマンドをコマンドの一部として実行する必要がある場合インストール後のスクリプトでは、setuptools が check_call を使用してこれを実行する便利な方法を提供します。機能:
from setuptools import setup from setuptools.command.install import install from subprocess import check_call class PostInstallCommand(install): def run(self): check_call("apt-get install this-package".split()) install.run(self) setup( ..., cmdclass={ 'install': PostInstallCommand, }, ... )
これにより、インストール プロセス中に必要なシステム構成やリソースのインストールを実行できます。
注: このソリューションは、ソース配布インストールでのみ機能します。 (tarball や zip ファイルなどから)、または編集可能モードでのインストール。事前に構築されたバイナリ ホイール (.whl ファイル) からインストールする場合は機能しません。
以上がインストール後のスクリプトを Python セットアップツールに統合するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。