mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
8 lines
173 B
Python
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()
|