Advertisement
Guest User

Untitled

a guest
Feb 25th, 2018
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.67 KB | None | 0 0
  1. # Configuration file for jupyter-notebook.
  2.  
  3. #------------------------------------------------------------------------------
  4. # Application(SingletonConfigurable) configuration
  5. #------------------------------------------------------------------------------
  6.  
  7. ## This is an application.
  8.  
  9. ## The date format used by logging formatters for %(asctime)s
  10. #c.Application.log_datefmt = '%Y-%m-%d %H:%M:%S'
  11.  
  12. ## The Logging format template
  13. #c.Application.log_format = '[%(name)s]%(highlevel)s %(message)s'
  14.  
  15. ## Set the log level by value or name.
  16. #c.Application.log_level = 30
  17.  
  18. #------------------------------------------------------------------------------
  19. # JupyterApp(Application) configuration
  20. #------------------------------------------------------------------------------
  21.  
  22. ## Base class for Jupyter applications
  23.  
  24. ## Answer yes to any prompts.
  25. #c.JupyterApp.answer_yes = False
  26.  
  27. ## Full path of a config file.
  28. #c.JupyterApp.config_file = ''
  29.  
  30. ## Specify a config file to load.
  31. #c.JupyterApp.config_file_name = ''
  32.  
  33. ## Generate default config file.
  34. #c.JupyterApp.generate_config = False
  35.  
  36. #------------------------------------------------------------------------------
  37. # NotebookApp(JupyterApp) configuration
  38. #------------------------------------------------------------------------------
  39.  
  40. ## Set the Access-Control-Allow-Credentials: true header
  41. #c.NotebookApp.allow_credentials = False
  42.  
  43. ## Set the Access-Control-Allow-Origin header
  44. #
  45. # Use '*' to allow any origin to access your server.
  46. #
  47. # Takes precedence over allow_origin_pat.
  48. #c.NotebookApp.allow_origin = ''
  49.  
  50. ## Use a regular expression for the Access-Control-Allow-Origin header
  51. #
  52. # Requests from an origin matching the expression will get replies with:
  53. #
  54. # Access-Control-Allow-Origin: origin
  55. #
  56. # where `origin` is the origin of the request.
  57. #
  58. # Ignored if allow_origin is set.
  59. #c.NotebookApp.allow_origin_pat = ''
  60.  
  61. ## Whether to allow the user to run the notebook as root.
  62. #c.NotebookApp.allow_root = False
  63.  
  64. ## DEPRECATED use base_url
  65. #c.NotebookApp.base_project_url = '/'
  66.  
  67. ## The base URL for the notebook server.
  68. #
  69. # Leading and trailing slashes can be omitted, and will automatically be added.
  70. #c.NotebookApp.base_url = '/'
  71.  
  72. ## Specify what command to use to invoke a web browser when opening the notebook.
  73. # If not specified, the default browser will be determined by the `webbrowser`
  74. # standard library module, which allows setting of the BROWSER environment
  75. # variable to override it.
  76. #c.NotebookApp.browser = ''
  77.  
  78. ## The full path to an SSL/TLS certificate file.
  79. #c.NotebookApp.certfile = ''
  80.  
  81. ## The full path to a certificate authority certificate for SSL/TLS client
  82. # authentication.
  83. #c.NotebookApp.client_ca = ''
  84.  
  85. ## The config manager class to use
  86. #c.NotebookApp.config_manager_class = 'notebook.services.config.manager.ConfigManager'
  87.  
  88. ## The notebook manager class to use.
  89. #c.NotebookApp.contents_manager_class = 'notebook.services.contents.largefilemanager.LargeFileManager'
  90.  
  91. ## Extra keyword arguments to pass to `set_secure_cookie`. See tornado's
  92. # set_secure_cookie docs for details.
  93. #c.NotebookApp.cookie_options = {}
  94.  
  95. ## The random bytes used to secure cookies. By default this is a new random
  96. # number every time you start the Notebook. Set it to a value in a config file
  97. # to enable logins to persist across server sessions.
  98. #
  99. # Note: Cookie secrets should be kept private, do not share config files with
  100. # cookie_secret stored in plaintext (you can read the value from a file).
  101. #c.NotebookApp.cookie_secret = b''
  102.  
  103. ## The file where the cookie secret is stored.
  104. #c.NotebookApp.cookie_secret_file = ''
  105.  
  106. ## The default URL to redirect to from `/`
  107. #c.NotebookApp.default_url = '/tree'
  108.  
  109. ## Disable cross-site-request-forgery protection
  110. #
  111. # Jupyter notebook 4.3.1 introduces protection from cross-site request
  112. # forgeries, requiring API requests to either:
  113. #
  114. # - originate from pages served by this server (validated with XSRF cookie and
  115. # token), or - authenticate with a token
  116. #
  117. # Some anonymous compute resources still desire the ability to run code,
  118. # completely without authentication. These services can disable all
  119. # authentication and security checks, with the full knowledge of what that
  120. # implies.
  121. #c.NotebookApp.disable_check_xsrf = False
  122.  
  123. ## Whether to enable MathJax for typesetting math/TeX
  124. #
  125. # MathJax is the javascript library Jupyter uses to render math/LaTeX. It is
  126. # very large, so you may want to disable it if you have a slow internet
  127. # connection, or for offline use of the notebook.
  128. #
  129. # When disabled, equations etc. will appear as their untransformed TeX source.
  130. #c.NotebookApp.enable_mathjax = True
  131.  
  132. ## extra paths to look for Javascript notebook extensions
  133. #c.NotebookApp.extra_nbextensions_path = []
  134.  
  135. ## Extra paths to search for serving static files.
  136. #
  137. # This allows adding javascript/css to be available from the notebook server
  138. # machine, or overriding individual files in the IPython
  139. #c.NotebookApp.extra_static_paths = []
  140.  
  141. ## Extra paths to search for serving jinja templates.
  142. #
  143. # Can be used to override templates from notebook.templates.
  144. #c.NotebookApp.extra_template_paths = []
  145.  
  146. ##
  147. #c.NotebookApp.file_to_run = ''
  148.  
  149. ## Deprecated: Use minified JS file or not, mainly use during dev to avoid JS
  150. # recompilation
  151. #c.NotebookApp.ignore_minified_js = False
  152.  
  153. ## (bytes/sec) Maximum rate at which messages can be sent on iopub before they
  154. # are limited.
  155. #c.NotebookApp.iopub_data_rate_limit = 1000000
  156.  
  157. ## (msgs/sec) Maximum rate at which messages can be sent on iopub before they are
  158. # limited.
  159. #c.NotebookApp.iopub_msg_rate_limit = 1000
  160.  
  161. ## The IP address the notebook server will listen on.
  162. #c.NotebookApp.ip = 'localhost'
  163.  
  164. ## Supply extra arguments that will be passed to Jinja environment.
  165. #c.NotebookApp.jinja_environment_options = {}
  166.  
  167. ## Extra variables to supply to jinja templates when rendering.
  168. #c.NotebookApp.jinja_template_vars = {}
  169.  
  170. ## The kernel manager class to use.
  171. #c.NotebookApp.kernel_manager_class = 'notebook.services.kernels.kernelmanager.MappingKernelManager'
  172.  
  173. ## The kernel spec manager class to use. Should be a subclass of
  174. # `jupyter_client.kernelspec.KernelSpecManager`.
  175. #
  176. # The Api of KernelSpecManager is provisional and might change without warning
  177. # between this version of Jupyter and the next stable one.
  178. #c.NotebookApp.kernel_spec_manager_class = 'jupyter_client.kernelspec.KernelSpecManager'
  179.  
  180. ## The full path to a private key file for usage with SSL/TLS.
  181. #c.NotebookApp.keyfile = ''
  182.  
  183. ## The login handler class to use.
  184. #c.NotebookApp.login_handler_class = 'notebook.auth.login.LoginHandler'
  185.  
  186. ## The logout handler class to use.
  187. #c.NotebookApp.logout_handler_class = 'notebook.auth.logout.LogoutHandler'
  188.  
  189. ## The MathJax.js configuration file that is to be used.
  190. #c.NotebookApp.mathjax_config = 'TeX-AMS-MML_HTMLorMML-full,Safe'
  191.  
  192. ## A custom url for MathJax.js. Should be in the form of a case-sensitive url to
  193. # MathJax, for example: /static/components/MathJax/MathJax.js
  194. #c.NotebookApp.mathjax_url = ''
  195.  
  196. ## Dict of Python modules to load as notebook server extensions.Entry values can
  197. # be used to enable and disable the loading ofthe extensions. The extensions
  198. # will be loaded in alphabetical order.
  199. #c.NotebookApp.nbserver_extensions = {}
  200.  
  201. ## The directory to use for notebooks and kernels.
  202. #c.NotebookApp.notebook_dir = ''
  203.  
  204. ## Whether to open in a browser after starting. The specific browser used is
  205. # platform dependent and determined by the python standard library `webbrowser`
  206. # module, unless it is overridden using the --browser (NotebookApp.browser)
  207. # configuration option.
  208. #c.NotebookApp.open_browser = True
  209.  
  210. ## Hashed password to use for web authentication.
  211. #
  212. # To generate, type in a python/IPython shell:
  213. #
  214. # from notebook.auth import passwd; passwd()
  215. #
  216. # The string should be of the form type:salt:hashed-password.
  217. #c.NotebookApp.password = ''
  218.  
  219. ## Forces users to use a password for the Notebook server. This is useful in a
  220. # multi user environment, for instance when everybody in the LAN can access each
  221. # other's machine though ssh.
  222. #
  223. # In such a case, server the notebook server on localhost is not secure since
  224. # any user can connect to the notebook server via ssh.
  225. #c.NotebookApp.password_required = False
  226.  
  227. ## The port the notebook server will listen on.
  228. #c.NotebookApp.port = 8888
  229.  
  230. ## The number of additional ports to try if the specified port is not available.
  231. #c.NotebookApp.port_retries = 50
  232.  
  233. ## DISABLED: use %pylab or %matplotlib in the notebook to enable matplotlib.
  234. #c.NotebookApp.pylab = 'disabled'
  235.  
  236. ## (sec) Time window used to check the message and data rate limits.
  237. #c.NotebookApp.rate_limit_window = 3
  238.  
  239. ## Reraise exceptions encountered loading server extensions?
  240. #c.NotebookApp.reraise_server_extension_failures = False
  241.  
  242. ## DEPRECATED use the nbserver_extensions dict instead
  243. #c.NotebookApp.server_extensions = []
  244.  
  245. ## The session manager class to use.
  246. #c.NotebookApp.session_manager_class = 'notebook.services.sessions.sessionmanager.SessionManager'
  247.  
  248. ## Supply SSL options for the tornado HTTPServer. See the tornado docs for
  249. # details.
  250. #c.NotebookApp.ssl_options = {}
  251.  
  252. ## Supply overrides for terminado. Currently only supports "shell_command".
  253. #c.NotebookApp.terminado_settings = {}
  254.  
  255. ## Token used for authenticating first-time connections to the server.
  256. #
  257. # When no password is enabled, the default is to generate a new, random token.
  258. #
  259. # Setting to an empty string disables authentication altogether, which is NOT
  260. # RECOMMENDED.
  261. #c.NotebookApp.token = '<generated>'
  262.  
  263. ## Supply overrides for the tornado.web.Application that the Jupyter notebook
  264. # uses.
  265. #c.NotebookApp.tornado_settings = {}
  266.  
  267. ## Whether to trust or not X-Scheme/X-Forwarded-Proto and X-Real-Ip/X-Forwarded-
  268. # For headerssent by the upstream reverse proxy. Necessary if the proxy handles
  269. # SSL
  270. #c.NotebookApp.trust_xheaders = False
  271.  
  272. ## DEPRECATED, use tornado_settings
  273. #c.NotebookApp.webapp_settings = {}
  274.  
  275. ## The base URL for websockets, if it differs from the HTTP server (hint: it
  276. # almost certainly doesn't).
  277. #
  278. # Should be in the form of an HTTP origin: ws[s]://hostname[:port]
  279. #c.NotebookApp.websocket_url = ''
  280.  
  281. #------------------------------------------------------------------------------
  282. # ConnectionFileMixin(LoggingConfigurable) configuration
  283. #------------------------------------------------------------------------------
  284.  
  285. ## Mixin for configurable classes that work with connection files
  286.  
  287. ## JSON file in which to store connection info [default: kernel-<pid>.json]
  288. #
  289. # This file will contain the IP, ports, and authentication key needed to connect
  290. # clients to this kernel. By default, this file will be created in the security
  291. # dir of the current profile, but can be specified by absolute path.
  292. #c.ConnectionFileMixin.connection_file = ''
  293.  
  294. ## set the control (ROUTER) port [default: random]
  295. #c.ConnectionFileMixin.control_port = 0
  296.  
  297. ## set the heartbeat port [default: random]
  298. #c.ConnectionFileMixin.hb_port = 0
  299.  
  300. ## set the iopub (PUB) port [default: random]
  301. #c.ConnectionFileMixin.iopub_port = 0
  302.  
  303. ## Set the kernel's IP address [default localhost]. If the IP address is
  304. # something other than localhost, then Consoles on other machines will be able
  305. # to connect to the Kernel, so be careful!
  306. #c.ConnectionFileMixin.ip = ''
  307.  
  308. ## set the shell (ROUTER) port [default: random]
  309. #c.ConnectionFileMixin.shell_port = 0
  310.  
  311. ## set the stdin (ROUTER) port [default: random]
  312. #c.ConnectionFileMixin.stdin_port = 0
  313.  
  314. ##
  315. #c.ConnectionFileMixin.transport = 'tcp'
  316.  
  317. #------------------------------------------------------------------------------
  318. # KernelManager(ConnectionFileMixin) configuration
  319. #------------------------------------------------------------------------------
  320.  
  321. ## Manages a single kernel in a subprocess on this host.
  322. #
  323. # This version starts kernels with Popen.
  324.  
  325. ## Should we autorestart the kernel if it dies.
  326. #c.KernelManager.autorestart = True
  327.  
  328. ## DEPRECATED: Use kernel_name instead.
  329. #
  330. # The Popen Command to launch the kernel. Override this if you have a custom
  331. # kernel. If kernel_cmd is specified in a configuration file, Jupyter does not
  332. # pass any arguments to the kernel, because it cannot make any assumptions about
  333. # the arguments that the kernel understands. In particular, this means that the
  334. # kernel does not receive the option --debug if it given on the Jupyter command
  335. # line.
  336. #c.KernelManager.kernel_cmd = []
  337.  
  338. ## Time to wait for a kernel to terminate before killing it, in seconds.
  339. #c.KernelManager.shutdown_wait_time = 5.0
  340.  
  341. #------------------------------------------------------------------------------
  342. # Session(Configurable) configuration
  343. #------------------------------------------------------------------------------
  344.  
  345. ## Object for handling serialization and sending of messages.
  346. #
  347. # The Session object handles building messages and sending them with ZMQ sockets
  348. # or ZMQStream objects. Objects can communicate with each other over the
  349. # network via Session objects, and only need to work with the dict-based IPython
  350. # message spec. The Session will handle serialization/deserialization, security,
  351. # and metadata.
  352. #
  353. # Sessions support configurable serialization via packer/unpacker traits, and
  354. # signing with HMAC digests via the key/keyfile traits.
  355. #
  356. # Parameters ----------
  357. #
  358. # debug : bool
  359. # whether to trigger extra debugging statements
  360. # packer/unpacker : str : 'json', 'pickle' or import_string
  361. # importstrings for methods to serialize message parts. If just
  362. # 'json' or 'pickle', predefined JSON and pickle packers will be used.
  363. # Otherwise, the entire importstring must be used.
  364. #
  365. # The functions must accept at least valid JSON input, and output *bytes*.
  366. #
  367. # For example, to use msgpack:
  368. # packer = 'msgpack.packb', unpacker='msgpack.unpackb'
  369. # pack/unpack : callables
  370. # You can also set the pack/unpack callables for serialization directly.
  371. # session : bytes
  372. # the ID of this Session object. The default is to generate a new UUID.
  373. # username : unicode
  374. # username added to message headers. The default is to ask the OS.
  375. # key : bytes
  376. # The key used to initialize an HMAC signature. If unset, messages
  377. # will not be signed or checked.
  378. # keyfile : filepath
  379. # The file containing a key. If this is set, `key` will be initialized
  380. # to the contents of the file.
  381.  
  382. ## Threshold (in bytes) beyond which an object's buffer should be extracted to
  383. # avoid pickling.
  384. #c.Session.buffer_threshold = 1024
  385.  
  386. ## Whether to check PID to protect against calls after fork.
  387. #
  388. # This check can be disabled if fork-safety is handled elsewhere.
  389. #c.Session.check_pid = True
  390.  
  391. ## Threshold (in bytes) beyond which a buffer should be sent without copying.
  392. #c.Session.copy_threshold = 65536
  393.  
  394. ## Debug output in the Session
  395. #c.Session.debug = False
  396.  
  397. ## The maximum number of digests to remember.
  398. #
  399. # The digest history will be culled when it exceeds this value.
  400. #c.Session.digest_history_size = 65536
  401.  
  402. ## The maximum number of items for a container to be introspected for custom
  403. # serialization. Containers larger than this are pickled outright.
  404. #c.Session.item_threshold = 64
  405.  
  406. ## execution key, for signing messages.
  407. #c.Session.key = b''
  408.  
  409. ## path to file containing execution key.
  410. #c.Session.keyfile = ''
  411.  
  412. ## Metadata dictionary, which serves as the default top-level metadata dict for
  413. # each message.
  414. #c.Session.metadata = {}
  415.  
  416. ## The name of the packer for serializing messages. Should be one of 'json',
  417. # 'pickle', or an import name for a custom callable serializer.
  418. #c.Session.packer = 'json'
  419.  
  420. ## The UUID identifying this session.
  421. #c.Session.session = ''
  422.  
  423. ## The digest scheme used to construct the message signatures. Must have the form
  424. # 'hmac-HASH'.
  425. #c.Session.signature_scheme = 'hmac-sha256'
  426.  
  427. ## The name of the unpacker for unserializing messages. Only used with custom
  428. # functions for `packer`.
  429. #c.Session.unpacker = 'json'
  430.  
  431. ## Username for the Session. Default is your system username.
  432. #c.Session.username = 'marikonkovan'
  433.  
  434. #------------------------------------------------------------------------------
  435. # MultiKernelManager(LoggingConfigurable) configuration
  436. #------------------------------------------------------------------------------
  437.  
  438. ## A class for managing multiple kernels.
  439.  
  440. ## The name of the default kernel to start
  441. #c.MultiKernelManager.default_kernel_name = 'python3'
  442.  
  443. ## The kernel manager class. This is configurable to allow subclassing of the
  444. # KernelManager for customized behavior.
  445. #c.MultiKernelManager.kernel_manager_class = 'jupyter_client.ioloop.IOLoopKernelManager'
  446.  
  447. #------------------------------------------------------------------------------
  448. # MappingKernelManager(MultiKernelManager) configuration
  449. #------------------------------------------------------------------------------
  450.  
  451. ## A KernelManager that handles notebook mapping and HTTP error handling
  452.  
  453. ##
  454. #c.MappingKernelManager.root_dir = ''
  455.  
  456. #------------------------------------------------------------------------------
  457. # ContentsManager(LoggingConfigurable) configuration
  458. #------------------------------------------------------------------------------
  459.  
  460. ## Base class for serving files and directories.
  461. #
  462. # This serves any text or binary file, as well as directories, with special
  463. # handling for JSON notebook documents.
  464. #
  465. # Most APIs take a path argument, which is always an API-style unicode path, and
  466. # always refers to a directory.
  467. #
  468. # - unicode, not url-escaped
  469. # - '/'-separated
  470. # - leading and trailing '/' will be stripped
  471. # - if unspecified, path defaults to '',
  472. # indicating the root path.
  473.  
  474. ##
  475. #c.ContentsManager.checkpoints = None
  476.  
  477. ##
  478. #c.ContentsManager.checkpoints_class = 'notebook.services.contents.checkpoints.Checkpoints'
  479.  
  480. ##
  481. #c.ContentsManager.checkpoints_kwargs = {}
  482.  
  483. ## Glob patterns to hide in file and directory listings.
  484. #c.ContentsManager.hide_globs = ['__pycache__', '*.pyc', '*.pyo', '.DS_Store', '*.so', '*.dylib', '*~']
  485.  
  486. ## Python callable or importstring thereof
  487. #
  488. # To be called on a contents model prior to save.
  489. #
  490. # This can be used to process the structure, such as removing notebook outputs
  491. # or other side effects that should not be saved.
  492. #
  493. # It will be called as (all arguments passed by keyword)::
  494. #
  495. # hook(path=path, model=model, contents_manager=self)
  496. #
  497. # - model: the model to be saved. Includes file contents.
  498. # Modifying this dict will affect the file that is stored.
  499. # - path: the API path of the save destination
  500. # - contents_manager: this ContentsManager instance
  501. #c.ContentsManager.pre_save_hook = None
  502.  
  503. ##
  504. #c.ContentsManager.root_dir = '/'
  505.  
  506. ## The base name used when creating untitled directories.
  507. #c.ContentsManager.untitled_directory = 'Untitled Folder'
  508.  
  509. ## The base name used when creating untitled files.
  510. #c.ContentsManager.untitled_file = 'untitled'
  511.  
  512. ## The base name used when creating untitled notebooks.
  513. #c.ContentsManager.untitled_notebook = 'Untitled'
  514.  
  515. #------------------------------------------------------------------------------
  516. # FileManagerMixin(Configurable) configuration
  517. #------------------------------------------------------------------------------
  518.  
  519. ## Mixin for ContentsAPI classes that interact with the filesystem.
  520. #
  521. # Provides facilities for reading, writing, and copying both notebooks and
  522. # generic files.
  523. #
  524. # Shared by FileContentsManager and FileCheckpoints.
  525. #
  526. # Note ---- Classes using this mixin must provide the following attributes:
  527. #
  528. # root_dir : unicode
  529. # A directory against against which API-style paths are to be resolved.
  530. #
  531. # log : logging.Logger
  532.  
  533. ## By default notebooks are saved on disk on a temporary file and then if
  534. # succefully written, it replaces the old ones. This procedure, namely
  535. # 'atomic_writing', causes some bugs on file system whitout operation order
  536. # enforcement (like some networked fs). If set to False, the new notebook is
  537. # written directly on the old one which could fail (eg: full filesystem or quota
  538. # )
  539. #c.FileManagerMixin.use_atomic_writing = True
  540.  
  541. #------------------------------------------------------------------------------
  542. # FileContentsManager(FileManagerMixin,ContentsManager) configuration
  543. #------------------------------------------------------------------------------
  544.  
  545. ## Python callable or importstring thereof
  546. #
  547. # to be called on the path of a file just saved.
  548. #
  549. # This can be used to process the file on disk, such as converting the notebook
  550. # to a script or HTML via nbconvert.
  551. #
  552. # It will be called as (all arguments passed by keyword)::
  553. #
  554. # hook(os_path=os_path, model=model, contents_manager=instance)
  555. #
  556. # - path: the filesystem path to the file just written - model: the model
  557. # representing the file - contents_manager: this ContentsManager instance
  558. #c.FileContentsManager.post_save_hook = None
  559.  
  560. ##
  561. #c.FileContentsManager.root_dir = ''
  562.  
  563. ## DEPRECATED, use post_save_hook. Will be removed in Notebook 5.0
  564. #c.FileContentsManager.save_script = False
  565.  
  566. #------------------------------------------------------------------------------
  567. # NotebookNotary(LoggingConfigurable) configuration
  568. #------------------------------------------------------------------------------
  569.  
  570. ## A class for computing and verifying notebook signatures.
  571.  
  572. ## The hashing algorithm used to sign notebooks.
  573. #c.NotebookNotary.algorithm = 'sha256'
  574.  
  575. ## The sqlite file in which to store notebook signatures. By default, this will
  576. # be in your Jupyter data directory. You can set it to ':memory:' to disable
  577. # sqlite writing to the filesystem.
  578. #c.NotebookNotary.db_file = ''
  579.  
  580. ## The secret key with which notebooks are signed.
  581. #c.NotebookNotary.secret = b''
  582.  
  583. ## The file where the secret key is stored.
  584. #c.NotebookNotary.secret_file = ''
  585.  
  586. ## A callable returning the storage backend for notebook signatures. The default
  587. # uses an SQLite database.
  588. #c.NotebookNotary.store_factory = traitlets.Undefined
  589.  
  590. #------------------------------------------------------------------------------
  591. # KernelSpecManager(LoggingConfigurable) configuration
  592. #------------------------------------------------------------------------------
  593.  
  594. ## If there is no Python kernelspec registered and the IPython kernel is
  595. # available, ensure it is added to the spec list.
  596. #c.KernelSpecManager.ensure_native_kernel = True
  597.  
  598. ## The kernel spec class. This is configurable to allow subclassing of the
  599. # KernelSpecManager for customized behavior.
  600. #c.KernelSpecManager.kernel_spec_class = 'jupyter_client.kernelspec.KernelSpec'
  601.  
  602. ## Whitelist of allowed kernel names.
  603. #
  604. # By default, all installed kernels are allowed.
  605. #c.KernelSpecManager.whitelist = set()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement