pipはPyPIからだけではなく、GitHubで公開されているパッケージのリポジトリから直接インストールすることもできる。その方法を紹介する。
この記事は会員限定です。会員登録(無料)すると全てご覧いただけます。
コマンドライン | 説明 |
---|---|
pip install pkg_name@git+https://github.com/acc_name/repo_name.git | リポジトリ名とパッケージ名が異なる場合は「パッケージ名@」を「git+https://…….git」の前に付加 |
pip install git+https://github.com/acc_name/pkg_name.git | リポジトリ名とパッケージ名が同じならこう書ける |
pip install git+https://github.com/acc_name/pkg_name.git@v1.0 | 「@v1.0」のように末尾にバージョンやタグを付加できる |
pipでGitHubからパッケージをインストールする構文 |
Copyright© Digital Advantage Corp. All Rights Reserved.