Beginner here so I'm not even sure if this even close to best practise.
I've pulled a copy of a python package from Git, specifically https://github.com/slundberg/shap.git. The result is saved where all my other Python packages are, I've called it shap_mv. Question is, if I make some changes to shap_mv and want to test the overall result, how do I import it as a package into Python?
Currently importing shap_mv works but the package has no contents. There is a subfolder with init.py and when I try import that folder as a package it seems to be missing functions and fails on import.
If I'm grossly far away from best practise then how should I work on the package and test the results?
Thank you!