Starting the CiRA app via python app.py produces the following error message:
File "C:\Users\juf\Workspace\BTH\NLP_RE\cira\app.py", line 9, in <module>
from src.api.service import CiRAService, CiRAServiceImpl
File "C:\Users\juf\Workspace\BTH\NLP_RE\cira\src\api\service.py", line 3, in <module>
from src.cira import CiRAConverter
File "C:\Users\juf\Workspace\BTH\NLP_RE\cira\src\cira.py", line 9, in <module>
from src.converters.labelstograph.graphconverter import GraphConverter
File "C:\Users\juf\Workspace\BTH\NLP_RE\cira\src\converters\labelstograph\graphconverter.py", line 2, in <module>
from src.converters.labelstograph.eventconnector import connect_events
File "C:\Users\juf\Workspace\BTH\NLP_RE\cira\src\converters\labelstograph\eventconnector.py", line 4, in <module>
import util.constants as consts
ModuleNotFoundError: No module named 'util'
The file eventconnector.py seems to attempt to import the constants from util.constants instead of src.util.constants and, hence, cannot be resolved.
Starting the CiRA app via
python app.py
produces the following error message:The file eventconnector.py seems to attempt to import the constants from
util.constants
instead ofsrc.util.constants
and, hence, cannot be resolved.