Join the Kedro community

Home
Members
Ian Whalen
I
Ian Whalen
Offline, last seen 2 weeks ago
Joined September 12, 2024

Question on project setup.

My workflow usually looks like:

mkdir new-project
cd new-project
uv venv --python 3.xx
source .venv/bin/activate
uv pip install kedro
kedro new --name new-project 
Then my directories look like:
new-project/
    .venv/
    new-project/
        ... kedro stuff ...
but really i wanted the <i>current</i> directory to be my kedro project (at the level where .venv is)
Is there a good way to do this?

of course I could just create the venv a directory up, like so:
new-project/
    ... kedro stuff ...
.venv/
but I was things all in the same directory without having to move all the kedro project files one directory up

2 comments
J
I