python - How to install package via pip requirements.txt from VCS into current directory? -


for example, have project foo dependency bar (that in private git repo) , want install bar foo directory via pip requirements.txt.

we can manually install bar console command:

pip install --target=. git+ssh://git.repo/some_pkg.git#egg=somepackage

but how install bar current directory requirements.txt?

the best way clone repository, or donwload requirements.txt file, , run pip install -r requirements.txt install modules dependencies.


Comments

Popular posts from this blog

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

serialization - Convert Any type in scala to Array[Byte] and back -

SonarQube Plugin for Jenkins does not find SonarQube Scanner executable -