Runtime Manifest

URL:
https://<notebookserveradmin>/notebooks/runtimes/<runtimeID>/manifest
Methods:
GET
Required Capability:
Administrator or Create and Edit
Version Introduced:
10.7

Description

This resource returns a JSON representation of all the Python libraries supported in the specified notebook runtime. Notebook authors who open notebooks using this runtime can import the libraries in the manifest into their notebooks.

Request parameters

ParameterDetails

f

The response format. The default is html .

Values: html | json | pjson

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "libraries": [
    {
      "build_string": "<build_string_of_library>",
      "dist_name": "<distribution_name_of_library>",
      "base_url": null,
      "channel": "defaults",
      "name": "<common_name_of_library>",
      "build_number": <build number>,
      "version": "<version>",
      "platform": null
    }
  ]
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "libraries": [
    {
      "build_string": "gpu",
      "dist_name": "_tflow_select-2.1.0-gpu",
      "base_url": null,
      "channel": "defaults",
      "name": "_tflow_select",
      "build_number": 0,
      "version": "2.1.0",
      "platform": null
    },
    {
      "build_string": "py36_0",
      "dist_name": "absl-py-0.6.1-py36_0",
      "base_url": null,
      "channel": "defaults",
      "name": "absl-py",
      "build_number": 0,
      "version": "0.6.1",
      "platform": null
    }
  ]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.