I'm working on a new project called ContentOrganizer, and I want to reuse some utilities from an older project of mine called SortPhotos. In SortPhotos, Iโve added a setup.py and an init.py, and it includes a module called file_utils.py that I want to import.
I was able to install the package into ContentOrganizer using pip install /path/to/SortPhotos, but when I try to import it like this:
from SortPhoto import file_utils
I get this error:
ModuleNotFoundError: No module named 'SortPhoto'