Open abartov opened 1 year ago
It fails to start complaining about a missing ModuleNotFoundError: No module named 'riksdagenapi' (that module probably shouldn't be mandatory, for people who may want to use the tool only in other languages.)
after manually installing riksdagenapi using pip (in a virtualenv), it still fails to start:
$ ~/venv/bin/python lexutils.py
Traceback (most recent call last):
File "/home/asaf/dev/LexUtils/lexutils.py", line 3, in <module>
from lexutils import main
File "/home/asaf/dev/LexUtils/lexutils/main.py", line 7, in <module>
from lexutils.modules import usage_examples_module
File "/home/asaf/dev/LexUtils/lexutils/modules/usage_examples_module.py", line 10, in <module>
from riksdagenapi.riksdagen import Riksdagen
ModuleNotFoundError: No module named 'riksdagenapi.riksdagen'
This tool is no longer in development and I'm not keen on changing that so I'm going to archive it instead.
Poetry is now used to handle the dependecies. Try pip install poetry && poetry install
Thank you for this response. Is there another tool that superseded this?
I don't know. What are your needs?
The instructions mention a requirements.txt file, but no such file exists in this repo.