I try to install py_eureka_client
module in existing (and working) Quart project.
- So I did
pip install py-eureka-client
(virtual environment activated) - Then confirm with
pip list
and can seepy-eureka-client 0.11.7
installed. - But when I try to import in app.py
import py_eureka_client.eureka_client as eureka_client
I have an errorModuleNotFoundError
.
I'm not sure that this is the problem with py_eureka_client module, but something with my environment. Please advise how to fix this issue.
PS. I'm on Windows and use VsCode.