Running `kedro install` , `kedro ipython` or `kedro jupyter notebook` from my project root, I get `No such command` errors
See original GitHub issueDescription
When running kedro install
, kedro ipython
or kedro jupyter notebook
from my project root, I get No such command
errors.
Context
I’ve just intalled kedro on a new env and I’m trying to use it on a notebook. jupyter notebook
command works normally, opening a fully functional notebook instance. Same doesn’t happens with kedro jupyter notebook
Steps to Reproduce
- Created new conda env, installed jupyter notebook and kedro
- use
kedro jupyter notebook
orkedro install
Expected Result
Kedro with notebook should open
Actual Result
An error occurs:
Usage: kedro [OPTIONS] COMMAND [ARGS]...
Try 'kedro -h' for help
No such command 'jupyter'
Usage: kedro [OPTIONS] COMMAND [ARGS]...
Try 'kedro -h' for help
No such command 'install'
Your Environment
- Kedro: 0.17.5
- Python: 3.6.12
- OS: Windows 10
Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Use Kedro with IPython and Jupyter Notebooks/Lab
The command runs the nodes from your default project pipeline in a sequential manner. To parameterise your pipeline run, refer to a later...
Read more >Kedro and Jupyter Notebooks - Read the Docs
Kedro offers a command ( kedro jupyter notebook ) to create a Jupyter kernel named kedro_<package_name> that is almost identical to the default...
Read more >Use Kedro with IPython and Jupyter - Read the Docs
This page demonstrates how to use Kedro with IPython, Jupyter Notebook and JupyterLab. We also recommend a video by Data Engineer One and...
Read more >Kedro's command line interface - Read the Docs
Kedro's command line interface (CLI) is used to give commands to Kedro via a terminal shell (such as the terminal app on macOS,...
Read more >Spaceflights tutorial FAQs — Kedro 0.18.3 documentation
Do you see the following for one of the raw datasets, make sure you have saved catalog.yml ? ... Call exit() within the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
My user error was not running kedro from the root of the project. Kedro still runs from any location, but only from the project root you’ll get the full set of commands.
@AntonyMilneQB, it is weird indeed. I feel like it’s probably user error because I’m dusting it off after not having used it in a few months… and today it is actually working in both the new test environment and the original environment for reasons I can’t explain.
For completeness, here are the outputs using my new environment:
From the original environment (no idea what is different from before…):
etc.
I suppose I will keep you posted if the error shows up again?
Thanks for your help.