Difficulty Getting This Working
Keith,
I am having difficulty getting this to work. I downloaded the repository, went into that folder and did a 'pip install .' from within my environment. when I do a 'pip show patternpy' it correctly shows the module, and version.
But in vscode, the import keeps saying no module found?
I am running on windows, with my source residing and running in a ubuntu wsl.
Why would I be getting this conflict? is there a direct pip install I can use that works clean, without having to download the source and do an install?
Looks like a very nice library, if I can get it installed!
Thanks
Faced the same issue. Its because of a erroneous naming/directory structure.
Rename the tradingpatterns folder to patternpy
mv tradingpatterns patternpy
This is how it should look after the change.
Then, change line 10 in pyproject.toml file to patternpy instead of tradingpatterns
This is how it should look after the change.