Hi, i am trying to run a kedro pipeline (kedro 0.1...
# questions
d
Hi, i am trying to run a kedro pipeline (kedro 0.17.4, python3.8, conda env) on windows 10 laptop. however ‘kedro run’ produces the the following error:
Copy code
File "C:\Users\Wendy Hu\.conda\envs\phi\lib\site-packages\dynaconf\validator.py", line 467, in validate
    validator.validate(
  File "C:\Users\Wendy Hu\.conda\envs\phi\lib\site-packages\dynaconf\validator.py", line 213, in validate
    self._validate_items(
TypeError: _validate_items() got an unexpected keyword argument 'only'
any suggestions on how to resolve this? thanks !
n
Is it possible to upgrade the kedro version? Kedro maintain a non-breaking release for the same minor version i.e. 0.17.x, you should be able to upgrade the version without much effort.
If not, try to installed an older
dynaconf
version, as I remember it is due to a breaking release from
dynaconf
i
Hey Daisy. Try to install
dynaconf==3.1.5
specifically. I think I've had this issue in the past with kedro 0.17.1
👍 1