I'm trying to build a simple REST-service and therefore I installed eve with that command in mysite:
$ pip install eve --user
In my *.py I try
from eve import Eve
app = Eve()
app.run()
but that leads to
Traceback (most recent call last):
File "/home/<user>/mysite/flask_app.py", line 12, in <module>
from eve import Eve
ModuleNotFoundError: No module named 'eve'
As you can see, I'm pretty new to all that stuff... Any help appreciated! THX