Yeah so in the root, if I run make run then it complains:
Traceback (most recent call last):
File ".venv/lib/python3.9/site-packages/flask/cli.py", line 240, in locate_app
__import__(module_name)
File "library/page.py", line 7, in <module>
from csvparser.csvparser import getpublications, gettypes, getyears
ModuleNotFoundError: No module named 'csvparser'
But if I cd library and python page.py then it works!
Yeah so in the root, if I run `make run` then it complains:
```
Traceback (most recent call last):
File ".venv/lib/python3.9/site-packages/flask/cli.py", line 240, in locate_app
__import__(module_name)
File "library/page.py", line 7, in <module>
from csvparser.csvparser import getpublications, gettypes, getyears
ModuleNotFoundError: No module named 'csvparser'
```
But if I `cd library` and `python page.py` then it works!
One works for me and the other works for decentral1se..
what am I doing wrong?
Yeah so in the root, if I run
make run
then it complains:But if I
cd library
andpython page.py
then it works!13d8d66871