When trying to pip install a python module that has certain dependencies not included in your current python environment, the pip install will fail. Sometimes after fixing that dependency by installing the dependency then re-attempting to pip install the original module, you will encounter another dependency that is required for the original module. This is the case with the python module fbprophet, when pip installing it you will usually get 3+ versions of this:
- pip install fbprophet
- [encounter error due to missing dependency] (pystan, lunarcalendar, etc.)
- pip install missing-dependency
This is a very slow process, is there a way to provide a requirements.txt for a python file & immediately know if you are missing dependencies in your file & list all of the missing modules?
TIA.