plugins-quickstart
plugins-quickstart copied to clipboard
I keep getting an error 'No module named 'quart''
Even when I manually re-install the quart module, I get this error when trying to run python3 main.py....
a********@********* plugins-quickstart % python3 main.py Traceback (most recent call last): File "/*****/plugins-quickstart/main.py", line 3, in <module> import quart ModuleNotFoundError: No module named 'quart'
This does not seem to be a library issue. Could you try again with a virtual environment?
- Create a new virtual environment and activate it
- Run
pip install -r requirements.txtin the project directory
You can read more about them here