I created and maintain a package seg-metrics. But I found that I can not install all of its dependencies when I use pip install seg-metrics
to install it, even though I have already included all necessary dependencies into the requirements.txt.
Can you tell me why and how to solve it?
You can try to reproduce it into your own pc.
Thanks to @phd, I found that I should set install_requires
in setup.py
. After that, this issue was fixed.