Howto: installation on Windows

still having issues with dead kernel when trying to run notebooks.

Reinstalled anaconda and reinstalled fastai from github. Cleared conda cache. Ran conda env update and then manually had to add pyproj and shapely using conda install -n fastai pkgname.

after looking up jupyter kernelspec list appears I have two (depending if I activate fastai or not):
image

The contents of kernel.json @ C:\Users\Stephen\Anaconda3\share\jupyter\kernels\python3 are…

{
 "argv": [
  "C:\\Users\\Stephen\\Anaconda3\\python.exe",
  "-m",
  "ipykernel_launcher",
  "-f",
  "{connection_file}"
 ],
 "display_name": "Python 3",
 "language": "python"
}

The contents of kernel.json @ C:\Users\Stephen\Anaconda3\envs\fastai\share\jupyter\kernels\python3 are…

{
 "argv": [
  "C:/Users/Stephen/Anaconda3/envs/fastai/bin/python",
  "-m",
  "ipykernel_launcher",
  "-f",
  "{connection_file}"
 ],
 "display_name": "Python 3",
 "language": "python"
}

the …/bin/python folder directory doesn’t exist though - could this be it? should I modify this and where should it be pointing to?