How do I use setup.py just to install dependencies?

I'm not interested in installing the package itself, but I'm interested in installing all the dependencies used by my package. Is there a way to do this using setup.py

? Seems to setup.py

install my package and all dependencies.

+3


source to share


1 answer


Use the -e flag when installing pip



pip install -e .

      

+1


source







All Articles