udacity/CarND-Term1-Starter-Kit

juypter kernel "not ready" when starting in carnd-term1 environment

johkle opened this issue · 1 comments

test.ipynb notebook does not run.
kernel is not up.
environment is build and activated succesfully.
running conda locally on windows 10 64bit.

what solved the issue for me was to change the kernel.json file located in
\conda\envs\carnd-term1\share\jupyter\kernels\python3

it should be{
"argv": [
"PATH/conda/envs/carnd-term1/python",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"display_name": "Python 3",
"language": "python"
}

instead of
{
"argv": [
"PATH/conda/envs/carnd-term1/bin/python",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"display_name": "Python 3",
"language": "python"
}