You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Eve REST Framework
Help with pip/eve
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...