You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to raise an issue about errors when doing a fresh installation of the repository.
At this step in the start.md setup instructions, when running python install.py several issues arise.
api/common/config.py already exists, so the script never asks for the DB information and paths i.e. this point in the code is never reached
I got around this by explicitly setting the values in api/common/config.py
api/common/config.py and evaluation/eval_config.py expects several environment variables (such as AWS credentials) to be set. This is a very strong requirement for a fresh install
I have temporarily bypassed this by changing all dictionary look-ups [] to .get() operations in those files
The text was updated successfully, but these errors were encountered:
I wanted to raise an issue about errors when doing a fresh installation of the repository.
At this step in the
start.md
setup instructions, when runningpython install.py
several issues arise.api/common/config.py
already exists, so the script never asks for the DB information and paths i.e. this point in the code is never reachedapi/common/config.py
api/common/config.py
andevaluation/eval_config.py
expects several environment variables (such as AWS credentials) to be set. This is a very strong requirement for a fresh install[]
to.get()
operations in those filesThe text was updated successfully, but these errors were encountered: