kernelspecapp.py
142 lines
| 5.0 KiB
| text/x-python
|
PythonLexer
Thomas Kluyver
|
r16560 | |||
# Copyright (c) IPython Development Team. | ||||
# Distributed under the terms of the Modified BSD License. | ||||
import errno | ||||
import os.path | ||||
from IPython.config.application import Application | ||||
Thomas Kluyver
|
r16597 | from IPython.core.application import ( | ||
BaseIPythonApplication, base_flags, base_aliases | ||||
) | ||||
Thomas Kluyver
|
r16560 | from IPython.utils.traitlets import Instance, Dict, Unicode, Bool | ||
Thomas Kluyver
|
r17381 | from .kernelspec import KernelSpecManager, _pythonfirst | ||
Thomas Kluyver
|
r16560 | |||
class ListKernelSpecs(BaseIPythonApplication): | ||||
description = """List installed kernel specifications.""" | ||||
kernel_spec_manager = Instance(KernelSpecManager) | ||||
Matthias BUSSONNIER
|
r17958 | |||
Thomas Kluyver
|
r16597 | # Not all of the base aliases are meaningful (e.g. profile) | ||
aliases = {k: base_aliases[k] for k in ['ipython-dir', 'log-level']} | ||||
flags = {'debug': base_flags['debug'],} | ||||
Thomas Kluyver
|
r16560 | |||
def _kernel_spec_manager_default(self): | ||||
return KernelSpecManager(ipython_dir=self.ipython_dir) | ||||
def start(self): | ||||
print("Available kernels:") | ||||
for kernelname in sorted(self.kernel_spec_manager.find_kernel_specs(), | ||||
key=_pythonfirst): | ||||
print(" %s" % kernelname) | ||||
class InstallKernelSpec(BaseIPythonApplication): | ||||
description = """Install a kernel specification directory.""" | ||||
kernel_spec_manager = Instance(KernelSpecManager) | ||||
def _kernel_spec_manager_default(self): | ||||
return KernelSpecManager(ipython_dir=self.ipython_dir) | ||||
sourcedir = Unicode() | ||||
kernel_name = Unicode("", config=True, | ||||
help="Install the kernel spec with this name" | ||||
) | ||||
def _kernel_name_default(self): | ||||
return os.path.basename(self.sourcedir) | ||||
system = Bool(False, config=True, | ||||
help=""" | ||||
Try to install the kernel spec to the systemwide directory instead of | ||||
the per-user directory. | ||||
""" | ||||
) | ||||
replace = Bool(False, config=True, | ||||
help="Replace any existing kernel spec with this name." | ||||
) | ||||
aliases = {'name': 'InstallKernelSpec.kernel_name'} | ||||
Thomas Kluyver
|
r16597 | for k in ['ipython-dir', 'log-level']: | ||
aliases[k] = base_aliases[k] | ||||
Thomas Kluyver
|
r16560 | |||
flags = {'system': ({'InstallKernelSpec': {'system': True}}, | ||||
"Install to the systemwide kernel registry"), | ||||
'replace': ({'InstallKernelSpec': {'replace': True}}, | ||||
"Replace any existing kernel spec with this name."), | ||||
Thomas Kluyver
|
r16597 | 'debug': base_flags['debug'], | ||
Thomas Kluyver
|
r16560 | } | ||
def parse_command_line(self, argv): | ||||
super(InstallKernelSpec, self).parse_command_line(argv) | ||||
# accept positional arg as profile name | ||||
if self.extra_args: | ||||
self.sourcedir = self.extra_args[0] | ||||
else: | ||||
print("No source directory specified.") | ||||
self.exit(1) | ||||
def start(self): | ||||
try: | ||||
self.kernel_spec_manager.install_kernel_spec(self.sourcedir, | ||||
kernel_name=self.kernel_name, | ||||
system=self.system, | ||||
replace=self.replace, | ||||
) | ||||
except OSError as e: | ||||
if e.errno == errno.EACCES: | ||||
print("Permission denied") | ||||
self.exit(1) | ||||
elif e.errno == errno.EEXIST: | ||||
Thomas Kluyver
|
r16722 | print("A kernel spec is already present at %s" % e.filename) | ||
Thomas Kluyver
|
r16560 | self.exit(1) | ||
raise | ||||
Thomas Kluyver
|
r17747 | class InstallNativeKernelSpec(BaseIPythonApplication): | ||
description = """Install the native kernel spec directory for this Python.""" | ||||
kernel_spec_manager = Instance(KernelSpecManager) | ||||
def _kernel_spec_manager_default(self): | ||||
return KernelSpecManager(ipython_dir=self.ipython_dir) | ||||
system = Bool(False, config=True, | ||||
help=""" | ||||
Try to install the kernel spec to the systemwide directory instead of | ||||
the per-user directory. | ||||
""" | ||||
) | ||||
# Not all of the base aliases are meaningful (e.g. profile) | ||||
aliases = {k: base_aliases[k] for k in ['ipython-dir', 'log-level']} | ||||
MinRK
|
r17963 | flags = {'system': ({'InstallNativeKernelSpec': {'system': True}}, | ||
Thomas Kluyver
|
r17747 | "Install to the systemwide kernel registry"), | ||
'debug': base_flags['debug'], | ||||
} | ||||
def start(self): | ||||
try: | ||||
self.kernel_spec_manager.install_native_kernel_spec(system=self.system) | ||||
except OSError as e: | ||||
MinRK
|
r17963 | self.exit(e) | ||
Thomas Kluyver
|
r17747 | |||
Thomas Kluyver
|
r16560 | class KernelSpecApp(Application): | ||
Thomas Kluyver
|
r16561 | name = "ipython kernelspec" | ||
Thomas Kluyver
|
r16560 | description = """Manage IPython kernel specifications.""" | ||
Thomas Kluyver
|
r17747 | subcommands = Dict({ | ||
'list': (ListKernelSpecs, ListKernelSpecs.description.splitlines()[0]), | ||||
'install': (InstallKernelSpec, InstallKernelSpec.description.splitlines()[0]), | ||||
'install-self': (InstallNativeKernelSpec, InstallNativeKernelSpec.description.splitlines()[0]), | ||||
}) | ||||
Thomas Kluyver
|
r16597 | aliases = {} | ||
flags = {} | ||||
Thomas Kluyver
|
r16560 | |||
def start(self): | ||||
if self.subapp is None: | ||||
print("No subcommand specified. Must specify one of: %s"% list(self.subcommands)) | ||||
print() | ||||
self.print_description() | ||||
self.print_subcommands() | ||||
self.exit(1) | ||||
else: | ||||
return self.subapp.start() | ||||