Created
June 7, 2018 18:41
-
-
Save jgosmann/c5ad9a36b7c4c96a1d4bb48ce7884841 to your computer and use it in GitHub Desktop.
Select Jupyter kernel for nbsphinx.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if 'NENGO_NBSPHINX_KERNEL' in os.environ: | |
nbsphinx_kernel_name = os.environ['NENGO_NBSPHINX_KERNEL'] | |
else: | |
from jupyter_client.kernelspecapp import KernelSpecManager | |
kernels = sorted(KernelSpecManager().find_kernel_specs()) | |
print("Available Jupyter kernels:") | |
for i, kernel in enumerate(kernels): | |
print(" {}. {}".format(i + 1, kernel)) | |
nbsphinx_kernel_name = None | |
while nbsphinx_kernel_name not in kernels: | |
nbsphinx_kernel_name = input( | |
"Select kernel for executing Jupyter notebooks: ") | |
try: | |
nbsphinx_kernel_name = kernels[int(nbsphinx_kernel_name) - 1] | |
except (IndexError, ValueError): | |
pass | |
print("To make this choice permanent add the following to your shell " | |
"startup file (e.g., .bashrc):") | |
print("export NENGO_NBSPHINX_KERNEL={!r}".format(nbsphinx_kernel_name)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment