I have a python package called 'lib-package'. This python package has a bunch of other python packages listed in the requirements.txt.
Now I need to use 'lib-package' in my other python project called 'other-project'. The problem is that the while doing pip install
inside 'other-project', the 'lib-package' is installed, but its dependencies are not installed.
How do I make pip recursively install the dependencies of 'lib-package'?