I have the following kernel.json which works but notice the comments, to remind me to replace the “4” by a “3” in two places if I need to use python 3.13
Can someone please tell me how to modify this json file (or create two) so that I
can have both Python 3.14 and 3.13 selectable in a jupyter notebook. Note, using Windows 11 without Anaconda.
I have the following kernel.json which works but notice the comments, to remind to replace the “4” by a “3” in to two places if I need to use python 3.13
Can someone please tell me how to modify this json file (or create two) so that I
can have both Python 3.14 and 3.13 selectable in
a jupyter notebook. Note, using Windows 11 without Anaconda.
{
“argv”:[
“C:\Python314\python.exe”,
“-Xfrozen_modules=off”,
“-m”,
“ipykernel_launcher”,
“-f”,
“{connection_file}”
],
“display_name”: “Python 3.14 (ipykernel)”,
“_comment”:“C:\Python313\python.exe”,
“_comment”: “Python 3.13 (ipykernel)”,
“language”: “python”,
“metadata”: {
“debugger”: true
}
}