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

cron - how to properly run Python script with crontab on every system startup -

elasticsearch - Is the order of operations guaranteed in a bulk update? -

Slow performance first queries on SQL Azure -