List only micromamba environments with jupyter kernel(s)

This commit is contained in:
Benoît Seignovert 2024-03-07 15:46:13 +01:00
parent c4c8fa33aa
commit 1a7f5f102f
Signed by: Benoît Seignovert
GPG key ID: F5D8895227D18A0B
8 changed files with 49 additions and 17 deletions

View file

@ -0,0 +1,14 @@
{
"argv": [
"/micromamba/global/envs/baz/bin/python",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"display_name": "Baz (GLOBAL)",
"language": "python",
"metadata": {
"debugger": true
}
}

View file

@ -0,0 +1,14 @@
{
"argv": [
"/micromamba/john-doe/envs/bar/bin/python",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"display_name": "Bar (USER)",
"language": "python",
"metadata": {
"debugger": true
}
}

View file

@ -0,0 +1,14 @@
{
"argv": [
"/micromamba/john-doe/envs/foo/bin/python",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"display_name": "Custom Foo (USER)",
"language": "python",
"metadata": {
"debugger": true
}
}