Imports cannot be resolved with editable project pip install (Resolved)

Hello, firstly everything works fine with PyHamilton doing standard pip install. However if I clone the PyHamilton repo locally and do a editable project pip install, as shown in documentation:
git clone https://github.com/dgretton/pyhamilton
cd pyhamilton
pip install -e .
None of the imports can be resolved when trying to run a simple project, get: ImportError: cannot import name 'HamiltonInterface' from 'pyhamilton' (unknown location)

Not too familiar with editable project installs. Is there any additional configuration that must be done? Thanks

@bryank Any chance you could update with the solution? If you figured one out

Hi Stefan it looks like my pip uninstall of the “regular” install of PyHamilton left some artifacts behind. After I deleted the PyHamilton folder under Lib/site-packages and did a clean editable project install, it worked.