-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't use find-kedro #12
Comments
I replicated your process on windows with wsl with success, see below.. I have only used venv a few times, conda is my daily driver. If I remember right you need to use I do notice that you have braces in your path. Did the cookie-cutter render fail? Does kedro run work? python -m venv venv
source venv/bin/activate
pip install kedro
pip install kedro[pandas] /mnt/c/temp via 🐍 v3.8.5 (venv)
❯ kedro --version
kedro, version 0.16.5
/mnt/c/temp via 🐍 v3.8.5 (venv)
❯ find-kedro --version
find-kedro, version 0.1.0
/mnt/c/temp via 🐍 v3.8.5 (venv)
❯ python --version
Python 3.8.5
/mnt/c/temp via 🐍 v3.8.5 (venv)
❯ kedro new
Project Name:
=============
Please enter a human readable name for your new project.
Spaces and punctuation are allowed.
[New Kedro Project]: find-project
Repository Name:
================
Please enter a directory name for your new project repository.
Alphanumeric characters, hyphens and underscores are allowed.
Lowercase is recommended.
[find-project]:
Python Package Name:
====================
Please enter a valid Python package name for your project package.
Alphanumeric characters and underscores are allowed.
Lowercase is recommended. Package name must start with a letter or underscore.
[find_project]:
Generate Example Pipeline:
==========================
Do you want to generate an example pipeline in your project?
Good for first-time users. (default=N)
[y/N]: y
/mnt/c/temp via 🐍 v3.8.5 (venv)
❯ cd find-project/
c/temp/find-project via 🐍 v3.8.5 (venv) took 2m26s
❯ find-kedro
{
"__default__": []
} |
I did make a repo to show how you might incorporate Note that I messed up the commits and the change to Also note that you can find-project on main via 🐍 v3.8.5 via 🅒 kedro
❯ kedro pipeline list
- __default__
- data_engineering.nodes
- data_science.nodes If you try the find-project on main via 🐍 v3.8.5 via 🅒 kedro
❯ find-kedro -d src/find_project/pipelines
{
"__default__": [
"split_data([example_iris_data,params:example_test_data_ratio]) -> [example_test_x,example_test_y,example_train_x,example_train_y]",
"train_model([example_train_x,example_train_y,parameters]) -> [example_model]",
"predict([example_model,example_test_x]) -> [example_predictions]",
"report_accuracy([example_predictions,example_test_y]) -> None"
],
"data_engineering.nodes": [
"split_data([example_iris_data,params:example_test_data_ratio]) -> [example_test_x,example_test_y,example_train_x,example_train_y]"
],
"data_science.nodes": [
"train_model([example_train_x,example_train_y,parameters]) -> [example_model]",
"predict([example_model,example_test_x]) -> [example_predictions]",
"report_accuracy([example_predictions,example_test_y]) -> None"
]
} |
I get a pretty crazy error when I try to do a fresh install.
Results in this guy:
The text was updated successfully, but these errors were encountered: