solorice/vscode/extensions/ms-toolsai.jupyter-2022.3.1000901801/pythonFiles/vscode_datascience_helpers/getJupyterKernelspecVersion.py
2022-04-28 20:54:44 +03:00

8 lines
173 B
Python

# Check whether kernelspec module exists.
import sys
import jupyter_client
import jupyter_client.kernelspec
sys.stdout.write(jupyter_client.__version__)
sys.stdout.flush()