You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The description of the windows command for finding the CLI script has a bug and also does not return a useful pointer. An alternative is better.
The current command: python -c 'import sys, os.path; print(os.path.join(os.path.dirname(sys.executable), "kedro"))'
Should be (switched double and single quotes): python -c "import sys, os.path; print(os.path.join(os.path.dirname(sys.executable), 'kedro'))"
And then returns: C:\Users\User\.conda\envs\slow_learning\kedro. This is not the correct directory or the correct filename.
Instead, the command should be: where kedro
Which returns: C:\Users\User\.conda\envs\slow_learning\Scripts\kedro.exe This is correct, except that the single backslashes need to be replaced with double backslashes to get it to work.
Description
The description of the windows command for finding the CLI script has a bug and also does not return a useful pointer. An alternative is better.
The current command:
python -c 'import sys, os.path; print(os.path.join(os.path.dirname(sys.executable), "kedro"))'
Should be (switched double and single quotes):
python -c "import sys, os.path; print(os.path.join(os.path.dirname(sys.executable), 'kedro'))"
And then returns:
C:\Users\User\.conda\envs\slow_learning\kedro
. This is not the correct directory or the correct filename.Instead, the command should be:
where kedro
Which returns:
C:\Users\User\.conda\envs\slow_learning\Scripts\kedro.exe
This is correct, except that the single backslashes need to be replaced with double backslashes to get it to work.Documentation page (if applicable)
https://docs.kedro.org/en/stable/development/set_up_vscode.html.
Context
OS Name Microsoft Windows 11 Pro
Version 10.0.22631 Build 22631
The text was updated successfully, but these errors were encountered: