udacity / CarND-Term1-Starter-Kit

MIT License
494 stars 602 forks source link

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

Closed johkle closed 5 years ago

johkle commented 5 years ago

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

johkle commented 5 years ago

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" }