Maison  >  Article  >  développement back-end  >  Comment intégrer les référentiels GitHub dans `requirements.txt` ?

Comment intégrer les référentiels GitHub dans `requirements.txt` ?

Barbara Streisand
Barbara Streisandoriginal
2024-11-15 04:25:02340parcourir

How to Integrate GitHub Repositories into `requirements.txt`?

Specifying GitHub Source in requirements.txt

To integrate a library installed from a GitHub repository into your dependencies, modify your requirements.txt file as follows:

For GitHub repositories, omit the "package==version" naming convention. Instead, use the following format:

package-name @ git+git://github.com/owner/repo@reference

where "reference" can be:

  • Commit hash: package-name @ git+https://github.com/owner/repo@41b95ec
  • Branch name: package-name @ git+https://github.com/owner/repo@main
  • Tag: package-name @ git+https://github.com/owner/repo@0.1
  • Release: package-name @ git+https://github.com/owner/repo@releases/tag/v3.7.1

Example:

To update the "package-two" dependency with a GitHub repository, use one of the following configurations in your requirements.txt:

package-two @ git+https://github.com/owner/repo@41b95ec
package-two @ git+https://github.com/owner/repo@main
package-two @ git+https://github.com/owner/[email protected]
package-two @ git+https://github.com/owner/repo@releases/tag/v3.7.1

Note: In some pip versions, update the package version in the package's setup.py to avoid assuming the requirement is already met.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn