I have written a small package, and uploaded it to github: Bai-Zhan/GluonModel
I have also written another package, which depends on this GluonModel
package: Bai-Zhan/ColdDSE.
Now I want to install the ColdDSE
package in a clean environment with
] add https://github.com/Bai-Zhan/ColdDSE.git
I would expect that it will also install the GluonModel
package since it is in the dependency list of ColdDSE
. However, there appears an error message reading:
ERROR: Unsatisfiable requirements detected for package GluonModel [168114fb]:
GluonModel [168114fb] log:
├─GluonModel [168114fb] has no known versions!
└─restricted to versions * by ColdDSE [6af89522] — no versions left
└─ColdDSE [6af89522] log:
├─possible versions are: 0.1.0 or uninstalled
└─ColdDSE [6af89522] is fixed to version 0.1.0
This problem can be solved if I install the GluonModel
package in advance manually:
] add https://github.com/Bai-Zhan/GluonModel.git
but I hope these dependencies can be installed automatically, since there is likely to be more and more dependencies like this in the future.
How can I fix this problem?