Hey folks! I'm checking on how to create a kedro p...
# questions
g
Hey folks! I'm checking on how to create a kedro project that plays nicely with poetry. From what I can tell there is cli
kedro-init
but it isn`t pip instalable yet. Is that the best way to do it?
d
You may find this thread helpful: https://github.com/kedro-org/kedro/issues/1722
g
But this
Copy code
kedro-init
tool is not yet available, right? At least I can't pip install it.
d
Oh, sorry, I didn't notice that you were at the bottom of that thread. facepalming
g
😄
d
I'm not aware of
kedro-init
being part of Kedro; it seems to come from https://github.com/astrojuanlu/kedro-init. You could probably
Copy code
pip install git+<https://github.com/astrojuanlu/kedro-init.git>
for now, although I'd assume it's experimental since it's not released or anything. I haven't tried/looked into it.
j
yeah it’s largely an experiment I made. you can install directly from GitHub @Guilherme Marthe (gui42) !
in the end the idea is that, from
poetry init
, there’s only a couple of files you need to create and some config to add to
pyproject.toml
my Kedro-init does it automatically
❤️ 1