question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

matplotlib vmin/vmax and norm simultaneously passed

See original GitHub issue

Environment data

  • VS Code version: 1.68.1
  • Jupyter Extension version (available under the Extensions sidebar): Yes
  • Python Extension version (available under the Extensions sidebar): v2022.8.1
  • OS (Windows | Mac | Linux distro) and version: WSL2
  • Python and/or Anaconda version: 3.7
  • Type of virtual environment used (N/A | venv | virtualenv | conda | …): conda
  • Jupyter server running: Local | Remote | remote

Expected behaviour

When using hp.mollview(np.zeros(hp.nside2npix(1024))), a matplotlib plot should be drawn, in mollview projection.

Actual behaviour

Some args/kwargs seem to be incorrectly passed. Above code doesn’t even use ‘norm’ or vmin/vmax parameters. And even when passing them it causes the same error.

My Jupyer notebkook works when using a different Jupyter service (i.e. using NERSC webservice for running). When connecting via my VScode, for about a week now, using hp.mollview or hp.cartview, … , produces this error

Steps to reproduce:

  1. Create a notebook
  2. run inside this notebook
import numpy as np
import healpy as hp
hp.mollview(np.zeros(hp.nside2npix(1024)))

Logs

Output for Jupyter in the Output panel (ViewOutput, change the drop-down the upper-right of the Output panel to Jupyter)

ValueError                                Traceback (most recent call last)
/tmp/ipykernel_1257/3095137169.py in <module>
----> 1 hp.mollview(np.ones(shape=hp.nside2npix(1024)))

~/.local/lib/python3.7/site-packages/healpy/visufunc.py in mollview(map, fig, rot, coord, unit, xsize, title, nest, min, max, flip, remove_dip, remove_mono, gal_cut, format, format2, cbar, cmap, badcolor, bgcolor, notext, norm, hold, reuse_axes, margins, sub, nlocs, return_projected_map)
    258             badcolor=badcolor,
    259             bgcolor=bgcolor,
--> 260             norm=norm,
    261         )
    262         if cbar:

~/.local/lib/python3.7/site-packages/healpy/projaxes.py in projmap(self, map, nest, **kwds)
    734         nside = pixelfunc.npix2nside(pixelfunc.get_map_size(map))
    735         f = lambda x, y, z: pixelfunc.vec2pix(nside, x, y, z, nest=nest)
--> 736         return super(HpxMollweideAxes, self).projmap(map, f, **kwds)
    737 
    738 

~/.local/lib/python3.7/site-packages/healpy/projaxes.py in projmap(self, map, vec2pix_func, xsize, **kwds)
    724     def projmap(self, map, vec2pix_func, xsize=800, **kwds):
    725         self.proj.set_proj_plane_info(xsize=xsize)
--> 726         img = super(MollweideAxes, self).projmap(map, vec2pix_func, **kwds)
    727         self.set_xlim(-2.01, 2.01)
    728         self.set_ylim(-1.01, 1.01)

~/.local/lib/python3.7/site-packages/healpy/projaxes.py in projmap(self, map, vec2pix_func, vmin, vmax, badval, badcolor, bgcolor, cmap, norm, rot, coord, **kwds)
    209             vmin=vmin,
    210             vmax=vmax,
--> 211             **kwds
    212         )
    213         xmin, xmax, ymin, ymax = self.proj.get_extent()

~/.conda/envs/py3.7/lib/python3.7/site-packages/matplotlib/_api/deprecation.py in wrapper(*args, **kwargs)
    454                 "parameter will become keyword-only %(removal)s.",
    455                 name=name, obj_type=f"parameter of {func.__name__}()")
--> 456         return func(*args, **kwargs)
    457 
    458     # Don't modify *func*'s signature, as boilerplate.py needs it.

~/.conda/envs/py3.7/lib/python3.7/site-packages/matplotlib/__init__.py in inner(ax, data, *args, **kwargs)
   1410     def inner(ax, *args, data=None, **kwargs):
   1411         if data is None:
-> 1412             return func(ax, *map(sanitize_sequence, args), **kwargs)
   1413 
   1414         bound = new_sig.bind(ax, *args, **kwargs)

~/.conda/envs/py3.7/lib/python3.7/site-packages/matplotlib/axes/_axes.py in imshow(self, X, cmap, norm, aspect, interpolation, alpha, vmin, vmax, origin, extent, interpolation_stage, filternorm, filterrad, resample, url, **kwargs)
   5491             # image does not already have clipping set, clip to axes patch
   5492             im.set_clip_path(self.patch)
-> 5493         im._scale_norm(norm, vmin, vmax)
   5494         im.set_url(url)
   5495 

~/.conda/envs/py3.7/lib/python3.7/site-packages/matplotlib/cm.py in _scale_norm(self, norm, vmin, vmax)
    379             if norm is not None:
    380                 raise ValueError(
--> 381                     "Passing parameters norm and vmin/vmax simultaneously is "
    382                     "not supported. Please pass vmin/vmax directly to the "
    383                     "norm when creating it.")

ValueError: Passing parameters norm and vmin/vmax simultaneously is not supported. Please pass vmin/vmax directly to the norm when creating it.

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:21 (11 by maintainers)

github_iconTop GitHub Comments

1reaction
DonJayamannecommented, Aug 31, 2022

Looks like the root cause of the problem is the Conda Environment isn’t getting activated properly on remote SSH. Duplicate of https://github.com/microsoft/vscode-jupyter/issues/11207

0reactions
Sebastian-Belknercommented, Aug 22, 2022

Well, your help is very appreciated.

  • verbose logging turned on
  • VS Code reloaded
  • issue replicated

You may find this ‘kernel-helper’ in the log. It is someting we use for customizing jupyter: https://docs.nersc.gov/services/jupyter/#customizing-kernels-with-a-helper-shell-script

The following shows verbose output between firing up VS code and connecting to the host, (I hope I am not opening backdoors here for anyone…)

Jupyter: Show Output Jupyter from VS code - verbose


Visual Studio Code (1.70.2, ssh-remote, desktop)
Jupyter Extension Version: 2022.7.1102252217.
Python Extension Version: 2022.12.1.
Multiple Workspace folders opened /global/homes/s/sebibel, /global/cscratch1/sd/sebibel
info 9:25:42.459: ZMQ install verified.
User belongs to experiment group 'jupyterTest'
User belongs to experiment group 'jupyterEnhancedDataViewer'
debug 9:25:43.57: Get Custom Env Variables, Class name = v (started execution), Arg 1: undefined, Arg 2: "RunPythonCode"
debug 9:25:43.58: Get Interpreters, Class name = k (started execution), Arg 1: undefined
debug 9:25:43.59: Get Active Interpreter, Class name = k (started execution), Arg 1: undefined
info 9:25:43.71: LSP Notebooks experiment is enabled
debug 9:25:43.72: Get Active Interpreter, Class name = k (started execution), Arg 1: "~"
debug 9:25:43.77: Get Custom Env Variables, Class name = v (started execution), Arg 1: undefined, Arg 2: "RunNonPythonCode"
debug 9:25:43.77: Get Custom Env Variables, Class name = v (started execution), Arg 1: undefined, Arg 2: "RunPythonCode"
debug 9:25:43.77: Get Custom Env Variables, Class name = v (started execution), Arg 1: "~", Arg 2: "RunNonPythonCode"
debug 9:25:43.78: Get Custom Env Variables, Class name = v (started execution), Arg 1: "~", Arg 2: "RunPythonCode"
debug 9:25:43.80: Get Custom Env Variables, Class name = v (started execution), Arg 1: "/global/cscratch1/sd/sebibel", Arg 2: "RunNonPythonCode"
debug 9:25:43.81: Get Custom Env Variables, Class name = v (started execution), Arg 1: "/global/cscratch1/sd/sebibel", Arg 2: "RunPythonCode"
debug 9:25:43.82: getCondaFile, Class name = w (started execution)
debug 9:25:43.83: getCondaVersion, Class name = w (started execution)
debug 9:25:43.83: getCondaVersionFromPython, Class name = w (started execution)
debug 9:25:43.84: Get Active Interpreter, Class name = k (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb"
debug 9:25:43.84: Get Active Interpreter, Class name = k (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb"
debug 9:25:43.114: Getting Jupyter KernelSpec Root Path, Class name = I, completed in 56ms, has a truthy return value, , Return Value: <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:25:43.142: Get Custom Env Variables, Class name = v, completed in 85ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
debug 9:25:43.142: Get Custom Env Variables, Class name = v, completed in 65ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunNonPythonCode"
debug 9:25:43.142: Get Custom Env Variables, Class name = v, completed in 65ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
debug 9:25:43.142: Get Jupyter Sub Paths, Class name = I, completed in 86ms, has a truthy return value, Arg 1: "", Arg 2: "kernels", Return Value: 
debug 9:25:43.142: Get Jupyter Kernel Paths, Class name = I, completed in 86ms, has a truthy return value, Arg 1: "", Return Value: 
debug 9:25:43.142: getCondaFile, Class name = w, completed in 60ms, has a truthy return value
debug 9:25:43.142: getCondaVersion, Class name = w, completed in 59ms, has a truthy return value
debug 9:25:43.143: Get KernelSpec root path, Class name = I, completed in 86ms, has a truthy return value, Arg 1: {"_isCancelled":false,"_emitter":{"_disposed":false,"_listeners":{"_first":{"element":{"subscription":{}},"next":{},"prev":{}},"_last":{"element":{"subscription":{}},"next":{},"prev":{}},"_size":1}}}, Return Value: <Uri:/usr/share/jupyter/kernels>, <Uri:/usr/local/share/jupyter/kernels>, <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:25:43.157: KernelFinder discovered 9 local and 0 remote kernels
debug 9:25:43.157: Get Interpreters, Class name = k (started execution), Arg 1: undefined
debug 9:25:43.157: Found 9 cached controllers
debug 9:25:43.158: Creating 9 controllers
debug 9:25:43.159: Creating notebook controller with name Python 2.7.18 64-bit
debug 9:25:43.160: Creating notebook controller with name Python 2.7.18 64-bit
debug 9:25:43.161: Creating notebook controller with name Python 3.6.15 64-bit
debug 9:25:43.162: Creating notebook controller with name Python 3.6.15 64-bit
debug 9:25:43.162: Creating notebook controller with name py3.7 (Python 3.7.11)
debug 9:25:43.163: Creating notebook controller with name py3.7 (Python 3.7.11)
debug 9:25:43.164: Creating notebook controller with name py3.7p (Python 3.7.11)
debug 9:25:43.164: Creating notebook controller with name py3.7p (Python 3.7.11)
debug 9:25:43.165: Creating notebook controller with name py3.7perlmutter (Python 3.7.11)
debug 9:25:43.166: Creating notebook controller with name py3.7perlmutter (Python 3.7.11)
debug 9:25:43.167: Creating notebook controller with name pyenv (Python 3.9.7)
debug 9:25:43.167: Creating notebook controller with name pyenv (Python 3.9.7)
debug 9:25:43.168: Creating notebook controller with name lazy-h5py (Python 3.9.12)
debug 9:25:43.168: Creating notebook controller with name lazy-h5py (Python 3.9.12)
debug 9:25:43.169: Creating notebook controller with name lazy-mpi4py (Python 3.9.12)
debug 9:25:43.169: Creating notebook controller with name lazy-mpi4py (Python 3.9.12)
debug 9:25:43.170: Creating notebook controller with name base (Python 3.9.7)
debug 9:25:43.170: Creating notebook controller with name base (Python 3.9.7)
debug 9:25:43.185: Get Custom Env Variables, Class name = v, completed in 108ms, has a truthy return value, Arg 1: "~", Arg 2: "RunNonPythonCode"
debug 9:25:43.196: Get Custom Env Variables, Class name = v, completed in 118ms, has a truthy return value, Arg 1: "~", Arg 2: "RunPythonCode"
debug 9:25:43.280: Loading kernelspec from /global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json for 
debug 9:25:43.280: Loading kernelspec from /global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json for 
debug 9:25:43.600: Get Custom Env Variables, Class name = v, completed in 520ms, has a truthy return value, Arg 1: "/global/cscratch1/sd/sebibel", Arg 2: "RunNonPythonCode"
debug 9:25:44.335: Get Custom Env Variables, Class name = v, completed in 1254ms, has a truthy return value, Arg 1: "/global/cscratch1/sd/sebibel", Arg 2: "RunPythonCode"
debug 9:25:46.31: KernelProvider switched kernel to id = .jvsc74a57bd066ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b./global/homes/s/sebibel/.conda/envs/py3.7/python./global/homes/s/sebibel/.conda/envs/py3.7/python.-m#ipykernel_launcher
debug 9:25:46.31: start the kernel, options.disableUI=true
debug 9:25:46.32: Start Jupyter Session in kernel.ts with disableUI = true
info 9:25:46.32: Starting Jupyter Session id = 'startUsingPythonInterpreter:.jvsc74a57bd066ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b./global/homes/s/sebibel/.conda/envs/py3.7/python./global/homes/s/sebibel/.conda/envs/py3.7/python.-m#ipykernel_launcher' (Python Path: /global/homes/s/sebibel/.conda/envs/py3.7, EnvType: Conda, EnvName: 'py3.7', Version: 3.7.11) for '/global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb' (disableUI=true)
debug 9:25:46.34: Create activated Env, Class name = k (started execution), Arg 1: ""
debug 9:25:46.35: Getting activated env variables, Class name = r (started execution), Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 3: true
debug 9:25:46.35: Getting activated env variables impl, Class name = r (started execution), Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.35: Getting activated env variables ourselves, Class name = r (started execution), Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.35: getCondaEnvVariables, Class name = r (started execution)
debug 9:25:46.35: getCondaVersion, Class name = w (started execution)
debug 9:25:46.35: Got activation Env Vars without any caching. Key is /global/homes/s/sebibel_66ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b
debug 9:25:46.35: Getting activated env variables from Python, Class name = r (started execution), Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.36: Get Custom Env Variables, Class name = v (started execution), Arg 1: undefined, Arg 2: "RunPythonCode"
debug 9:25:46.36: Cached data exists getEnvironmentVariables, <No Resource>
debug 9:25:46.36: Cached custom vars data exists getCustomEnvironmentVariables, <No Resource>
info 9:25:46.36: Creating raw notebook for resource '/global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb'
debug 9:25:46.36: Getting preferred kernel for resource '/global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb'
info 9:25:46.36: Computing working directory for resource '/global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb'
debug 9:25:46.36: getCondaVersion, Class name = w, completed in 1ms, has a truthy return value
debug 9:25:46.37: Get Interpreter details, Class name = k (started execution), Arg 1: "~/.conda/envs/py3.7/bin/python", Arg 2: undefined
debug 9:25:46.37: Get Custom Env Variables, Class name = v, completed in 1ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
debug 9:25:46.37: Intiailize notebook communications for editor /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:25:46.38: Resolving notebook UI Comms (resolve) for /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:25:46.38: initialize CommonMessageCoordinator
debug 9:25:46.90: Registering commtarget jupyter.widget
debug 9:25:46.90: IPyWidgetMessageDispatcher.initialize
debug 9:25:46.99: Storing Preferred remote kernel for /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb is undefined
debug 9:25:46.100: Controller selection change completed
debug 9:25:46.101: Connecting to raw session for /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb with connection .jvsc74a57bd066ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b./global/homes/s/sebibel/.conda/envs/py3.7/python./global/homes/s/sebibel/.conda/envs/py3.7/python.-m#ipykernel_launcher
info 9:25:46.101: Starting raw kernel 'py3.7 (Python 3.7.11)' for interpreter /global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:25:46.102: Create activated Env, Class name = k (started execution), Arg 1: ""
debug 9:25:46.102: Getting activated env variables, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 3: undefined
debug 9:25:46.102: Getting activated env variables impl, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.102: Getting activated env variables ourselves, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.102: Got activation Env Vars from cached promise with key /global/homes/s/sebibel_66ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b
debug 9:25:46.102: Getting activated env variables from Python, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.102: Get Custom Env Variables, Class name = v (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: "RunPythonCode"
debug 9:25:46.102: Cached data exists getEnvironmentVariables, /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:25:46.102: Cached custom vars data exists getCustomEnvironmentVariables, /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:25:46.103: Get Custom Env Variables, Class name = v, completed in 1ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: "RunPythonCode"
info 9:25:46.122: Kernel launching with ports 9005,9006,9007,9008,9009. Start port is 9000
debug 9:25:46.126: Launching kernel in kernelProcess.ts, Class name = E (started execution), Arg 1: "~/notebooks/dlensalot", Arg 2: ""
debug 9:25:46.127: Create activated Env, Class name = k (started execution), Arg 1: ""
debug 9:25:46.127: Getting activated env variables, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 3: undefined
debug 9:25:46.127: Getting activated env variables impl, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.127: Getting activated env variables ourselves, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.127: Got activation Env Vars from cached promise with key /global/homes/s/sebibel_66ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b
debug 9:25:46.127: Getting activated env variables from Python, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.127: Get Custom Env Variables, Class name = v (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: "RunPythonCode"
debug 9:25:46.127: Cached data exists getEnvironmentVariables, /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:25:46.127: Cached custom vars data exists getCustomEnvironmentVariables, /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:25:46.128: Cached custom vars data exists getCustomEnvironmentVariables, /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:25:46.128: Getting activated env variables, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 3: false
debug 9:25:46.128: Getting activated env variables impl, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.128: Getting activated env variables ourselves, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.128: Got activation Env Vars from cached promise with key /global/homes/s/sebibel_66ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b
debug 9:25:46.128: Getting activated env variables from Python, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:46.128: Get Custom Env Variables, Class name = v (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: "RunPythonCode"
debug 9:25:46.128: Cached data exists getEnvironmentVariables, /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:25:46.128: Cached custom vars data exists getCustomEnvironmentVariables, /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:25:46.128: Get Custom Env Variables, Class name = v, completed in 1ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: "RunPythonCode"
debug 9:25:46.128: Get Custom Env Variables, Class name = v, completed in 0ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: "RunPythonCode"
debug 9:25:59.804: Get Active Interpreter, Class name = k (started execution), Arg 1: undefined
debug 9:25:59.804: Get Interpreters, Class name = k (started execution), 
info 9:25:59.806: Experiment status for python is {"enabled":true,"optInto":[],"optOutFrom":[]}
debug 9:25:59.826: Get Active Interpreter, Class name = k, completed in 16767ms, has a truthy return value, Arg 1: undefined
debug 9:25:59.827: Get Active Interpreter, Class name = k, completed in 16755ms, has a truthy return value, Arg 1: "~"
debug 9:25:59.827: Get Active Interpreter, Class name = k, completed in 16743ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb"
debug 9:25:59.828: Get Active Interpreter, Class name = k, completed in 16744ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb"
debug 9:25:59.829: Rank Kernels, Class name = y (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: {"kernelspec":{"display_name":"NERSC Python","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.7.11"},"vscode":{"interpreter":{"hash":"66ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b"}}}, Arg 3: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 4: "", Arg 5: "useCache", Arg 6: undefined
debug 9:25:59.830: Get Interpreters, Class name = k (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb"
debug 9:25:59.830: Get Active Interpreter, Class name = k, completed in 26ms, has a truthy return value, Arg 1: undefined
debug 9:25:59.833: Get Interpreter details, Class name = k, completed in 13796ms, has a truthy return value, Arg 1: "~/.conda/envs/py3.7/bin/python", Arg 2: undefined
debug 9:25:59.833: Create ProcessService, Class name = h (started execution), Arg 1: undefined
debug 9:25:59.833: Get Custom Env Variables, Class name = v (started execution), Arg 1: undefined, Arg 2: "RunNonPythonCode"
debug 9:25:59.833: Cached data exists getEnvironmentVariables, <No Resource>
debug 9:25:59.833: Getting env activation commands, Class name = r (started execution), Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:59.833: Getting activation commands for file:///global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:25:59.833: Getting activation commands for file:///global/homes/s/sebibel/.conda/envs/py3.7/bin/python are cached.
debug 9:25:59.833: Get Custom Env Variables, Class name = v (started execution), Arg 1: undefined, Arg 2: "RunPythonCode"
debug 9:25:59.833: Cached data exists getEnvironmentVariables, <No Resource>
debug 9:25:59.834: Get Custom Env Variables, Class name = v, completed in 1ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunNonPythonCode"
debug 9:25:59.834: Getting env activation commands, Class name = r, completed in 1ms, has a truthy return value, Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:25:59.834: Get Custom Env Variables, Class name = v, completed in 1ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
debug 9:25:59.834: Create ProcessService, Class name = h, completed in 1ms, has a truthy return value, Arg 1: undefined
debug 9:25:59.834: Activation Commands received conda activate py3.7 for shell bash
debug 9:25:59.837: Has Custom Env Vars
debug 9:25:59.837: Activating Environment to capture Environment variables, conda activate py3.7 && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python /global/u2/s/sebibel/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/pythonFiles/printEnvVariables.py
debug 9:25:59.837: Execing shell command, Class name = g (started execution), Arg 1: "conda activate py3.7 && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python /global/u2/s/sebibel/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/pythonFiles/printEnvVariables.py", Arg 2: ""
debug 9:25:59.884: KernelFinder discovered 9 local and 0 remote kernels
info 9:25:59.885: Preferred Remote kernel for /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb is undefined
info 9:25:59.885: Find preferred kernel for /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb with metadata {"kernelspec":{"display_name":"NERSC Python","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.7.11"},"vscode":{"interpreter":{"hash":"66ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b"}}} & preferred interpreter /global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:25:59.899: Rank Kernels, Class name = y, completed in 70ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: {"kernelspec":{"display_name":"NERSC Python","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.7.11"},"vscode":{"interpreter":{"hash":"66ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b"}}}, Arg 3: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 4: "", Arg 5: "useCache", Arg 6: undefined
info 9:25:59.899: Preferred Remote kernel for /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb is undefined
info 9:25:59.900: Preferred kernel .jvsc74a57bd066ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b./global/homes/s/sebibel/.conda/envs/py3.7/python./global/homes/s/sebibel/.conda/envs/py3.7/python.-m#ipykernel_launcher is exact match or top match for non python kernels, (false, [object Object], true, false)
info 9:25:59.902: PreferredConnection: .jvsc74a57bd066ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b./global/homes/s/sebibel/.conda/envs/py3.7/python./global/homes/s/sebibel/.conda/envs/py3.7/python.-m#ipykernel_launcher found for NotebookDocument: /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:25:59.902: TargetController found ID: .jvsc74a57bd066ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b./global/homes/s/sebibel/.conda/envs/py3.7/python./global/homes/s/sebibel/.conda/envs/py3.7/python.-m#ipykernel_launcher for document /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
error 9:26:1.589: Failed to get activated environment variables ourselves [Error: Command failed: conda activate py3.7 && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python /global/u2/s/sebibel/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/pythonFiles/printEnvVariables.py

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
To initialize your shell, run

    $ conda init <SHELL_NAME>

Currently supported shells are:
  - bash
  - fish
  - tcsh
  - xonsh
  - zsh
  - powershell

See 'conda init --help' for more information and options.

IMPORTANT: You may need to close and restart your shell after running 'conda init'.



	at ChildProcess.exithandler (node:child_process:397:12)
	at ChildProcess.emit (node:events:390:28)
	at maybeClose (node:internal/child_process:1064:16)
	at Socket.<anonymous> (node:internal/child_process:450:11)
	at Socket.emit (node:events:390:28)
	at Pipe.<anonymous> (node:net:687:12)] {
  killed: false,
  code: 1,
  signal: null,
  cmd: "conda activate py3.7 && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python /global/u2/s/sebibel/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/pythonFiles/printEnvVariables.py"
}
error 9:26:1.589: Execing shell command, Class name = g, completed in 1752ms, has a falsy return value, Arg 1: "conda activate py3.7 && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python /global/u2/s/sebibel/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/pythonFiles/printEnvVariables.py", Arg 2: "" [Error: Command failed: conda activate py3.7 && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python /global/u2/s/sebibel/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/pythonFiles/printEnvVariables.py

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
To initialize your shell, run

    $ conda init <SHELL_NAME>

Currently supported shells are:
  - bash
  - fish
  - tcsh
  - xonsh
  - zsh
  - powershell

See 'conda init --help' for more information and options.

IMPORTANT: You may need to close and restart your shell after running 'conda init'.



	at ChildProcess.exithandler (node:child_process:397:12)
	at ChildProcess.emit (node:events:390:28)
	at maybeClose (node:internal/child_process:1064:16)
	at Socket.<anonymous> (node:internal/child_process:450:11)
	at Socket.emit (node:events:390:28)
	at Pipe.<anonymous> (node:net:687:12)] {
  killed: false,
  code: 1,
  signal: null,
  cmd: "conda activate py3.7 && echo 'e8b39361-0157-4923-80e1-22d70d46dee6' && python /global/u2/s/sebibel/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/pythonFiles/printEnvVariables.py"
}
debug 9:26:1.592: getCondaEnvVariables, Class name = r, completed in 15557ms, has a falsy return value
debug 9:26:1.592: getCondaEnvVariables and send telemetry took: 15557ms
debug 9:26:1.593: Getting activated env variables ourselves, Class name = r, completed in 15558ms, has a falsy return value, Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:1.593: Getting activated env variables ourselves, Class name = r, completed in 15491ms, has a falsy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:1.593: Getting activated env variables ourselves, Class name = r, completed in 15466ms, has a falsy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:1.593: Getting activated env variables ourselves, Class name = r, completed in 15465ms, has a falsy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:1.593: Got env vars ourselves faster, but empty /global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:26:1.593: Got env vars ourselves faster, but empty /global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:26:1.593: Got env vars ourselves faster, but empty /global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:26:1.593: Got env vars ourselves faster, but empty /global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:26:1.593: Got env vars ourselves /global/homes/s/sebibel/.conda/envs/py3.7/bin/python in 15558ms
debug 9:26:1.593: Got env vars ourselves /global/homes/s/sebibel/.conda/envs/py3.7/bin/python in 15491ms
debug 9:26:1.593: Got env vars ourselves /global/homes/s/sebibel/.conda/envs/py3.7/bin/python in 15466ms
debug 9:26:1.593: Got env vars ourselves /global/homes/s/sebibel/.conda/envs/py3.7/bin/python in 15465ms
debug 9:26:2.255: getCondaVersionFromPython, Class name = w, completed in 19172ms, has a truthy return value
debug 9:26:2.841: Get Interpreters, Class name = k (started execution), Arg 1: undefined
debug 9:26:2.841: Get Active Interpreter, Class name = k (started execution), Arg 1: undefined
debug 9:26:2.842: Get Active Interpreter, Class name = k, completed in 1ms, has a truthy return value, Arg 1: undefined
debug 9:26:2.848: Get Interpreters, Class name = k, completed in 19790ms, has a truthy return value, Arg 1: undefined
debug 9:26:2.850: Get Active Interpreter, Class name = k (started execution), Arg 1: undefined
debug 9:26:2.850: Get Interpreters, Class name = k, completed in 19693ms, has a truthy return value, Arg 1: undefined
debug 9:26:2.851: Get Active Interpreter, Class name = k (started execution), Arg 1: undefined
debug 9:26:2.851: Get Interpreters, Class name = k, completed in 3047ms, has a truthy return value, 
debug 9:26:2.851: Get Interpreters, Class name = k, completed in 3021ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb"
debug 9:26:2.852: Get Active Interpreter, Class name = k (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb"
debug 9:26:2.852: Getting Jupyter KernelSpec Root Path, Class name = I, completed in 2ms, has a truthy return value, , Return Value: <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.853: Get Active Interpreter, Class name = k, completed in 3ms, has a truthy return value, Arg 1: undefined
debug 9:26:2.853: Getting Jupyter KernelSpec Root Path, Class name = I, completed in 3ms, has a truthy return value, , Return Value: <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.853: Getting Jupyter KernelSpec Root Path, Class name = I, completed in 2ms, has a truthy return value, , Return Value: <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.853: Get Active Interpreter, Class name = k, completed in 2ms, has a truthy return value, Arg 1: undefined
debug 9:26:2.854: Getting Jupyter KernelSpec Root Path, Class name = I, completed in 2ms, has a truthy return value, , Return Value: <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.854: Get Active Interpreter, Class name = k, completed in 2ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb"
debug 9:26:2.855: Get Jupyter Kernel Paths, Class name = I, completed in 4ms, has a truthy return value, Arg 1: "", Return Value: 
debug 9:26:2.855: Get Jupyter Kernel Paths, Class name = I, completed in 5ms, has a truthy return value, Arg 1: "", Return Value: 
debug 9:26:2.855: Get Jupyter Kernel Paths, Class name = I, completed in 4ms, has a truthy return value, Arg 1: "", Return Value: 
debug 9:26:2.855: Get Jupyter Kernel Paths, Class name = I, completed in 3ms, has a truthy return value, Arg 1: "", Return Value: 
debug 9:26:2.857: Get KernelSpec root path, Class name = I, completed in 7ms, has a truthy return value, Arg 1: {"_isCancelled":true,"_emitter":null}, Return Value: <Uri:/usr/share/jupyter/kernels>, <Uri:/usr/local/share/jupyter/kernels>, <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.857: Get KernelSpec root path, Class name = I, completed in 7ms, has a truthy return value, Arg 1: {"_isCancelled":true,"_emitter":null}, Return Value: <Uri:/usr/share/jupyter/kernels>, <Uri:/usr/local/share/jupyter/kernels>, <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.857: Get KernelSpec root path, Class name = I, completed in 6ms, has a truthy return value, Arg 1: {"_isCancelled":true,"_emitter":null}, Return Value: <Uri:/usr/share/jupyter/kernels>, <Uri:/usr/local/share/jupyter/kernels>, <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.857: Get KernelSpec root path, Class name = I, completed in 5ms, has a truthy return value, Arg 1: {"_isCancelled":false,"_emitter":{"_disposed":false,"_listeners":{"_first":{"element":{"subscription":{}},"next":{},"prev":{}},"_last":{"element":{"subscription":{}},"next":{},"prev":{}},"_size":1}}}, Return Value: <Uri:/usr/share/jupyter/kernels>, <Uri:/usr/local/share/jupyter/kernels>, <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.857: Get Interpreters, Class name = k, completed in 16ms, has a truthy return value, Arg 1: undefined
debug 9:26:2.858: Get Active Interpreter, Class name = k (started execution), Arg 1: undefined
debug 9:26:2.859: Getting Jupyter KernelSpec Root Path, Class name = I, completed in 2ms, has a truthy return value, , Return Value: <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.859: Get Active Interpreter, Class name = k, completed in 1ms, has a truthy return value, Arg 1: undefined
debug 9:26:2.859: Get Jupyter Kernel Paths, Class name = I, completed in 2ms, has a truthy return value, Arg 1: "", Return Value: 
debug 9:26:2.860: Get KernelSpec root path, Class name = I, completed in 3ms, has a truthy return value, Arg 1: {"_isCancelled":false,"_emitter":{"_disposed":false,"_listeners":{"_first":{"element":{"subscription":{}},"next":{},"prev":{}},"_last":{"element":{"subscription":{}},"next":{},"prev":{}},"_size":1}}}, Return Value: <Uri:/usr/share/jupyter/kernels>, <Uri:/usr/local/share/jupyter/kernels>, <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.866: KernelFinder discovered 9 local and 0 remote kernels
debug 9:26:2.866: Get Interpreters, Class name = k (started execution), Arg 1: undefined
debug 9:26:2.866: Found 9 cached controllers
debug 9:26:2.866: Creating 9 controllers
debug 9:26:2.867: Get Interpreters, Class name = k, completed in 1ms, has a truthy return value, Arg 1: undefined
debug 9:26:2.868: Get Active Interpreter, Class name = k (started execution), Arg 1: undefined
debug 9:26:2.871: Getting Jupyter KernelSpec Root Path, Class name = I, completed in 3ms, has a truthy return value, , Return Value: <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.871: Get Active Interpreter, Class name = k, completed in 3ms, has a truthy return value, Arg 1: undefined
debug 9:26:2.872: Get Jupyter Kernel Paths, Class name = I, completed in 4ms, has a truthy return value, Arg 1: "", Return Value: 
debug 9:26:2.872: Get KernelSpec root path, Class name = I, completed in 4ms, has a truthy return value, Arg 1: {"_isCancelled":false,"_emitter":{"_disposed":false,"_listeners":{"_first":{"element":{"subscription":{}},"next":{},"prev":{}},"_last":{"element":{"subscription":{}},"next":{},"prev":{}},"_size":1}}}, Return Value: <Uri:/usr/share/jupyter/kernels>, <Uri:/usr/local/share/jupyter/kernels>, <Uri:/global/homes/s/sebibel/.local/share/jupyter/kernels>
debug 9:26:2.876: Get Interpreter details, Class name = k (started execution), Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.876: Get Interpreter details, Class name = k (started execution), Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.878: Get Interpreter details, Class name = k (started execution), Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.878: Get Interpreter details, Class name = k (started execution), Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.879: Get Interpreter details, Class name = k (started execution), Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.880: Get Interpreter details, Class name = k (started execution), Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.881: Get Interpreter details, Class name = k (started execution), Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.881: Get Interpreter details, Class name = k (started execution), Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.882: Get Interpreter details, Class name = k (started execution), Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.883: Get Interpreter details, Class name = k (started execution), Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Get Interpreter details, Class name = k, completed in 45ms, has a falsy return value, Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Get Interpreter details, Class name = k, completed in 45ms, has a falsy return value, Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Get Interpreter details, Class name = k, completed in 43ms, has a falsy return value, Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Get Interpreter details, Class name = k, completed in 43ms, has a falsy return value, Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Get Interpreter details, Class name = k, completed in 42ms, has a falsy return value, Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Get Interpreter details, Class name = k, completed in 41ms, has a falsy return value, Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Get Interpreter details, Class name = k, completed in 40ms, has a falsy return value, Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Get Interpreter details, Class name = k, completed in 40ms, has a falsy return value, Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Get Interpreter details, Class name = k, completed in 39ms, has a falsy return value, Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Get Interpreter details, Class name = k, completed in 38ms, has a falsy return value, Arg 1: "/{resource_dir}/kernel-helper.sh"
debug 9:26:2.921: Kernel Spec for py3.7 ignored as we cannot find a matching interpreter {"kind":"startUsingLocalKernelSpec","kernelSpec":{"specFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json","name":"py3.7","argv":["{resource_dir}/kernel-helper.sh","-f","{connection_file}"],"language":"python","executable":"{resource_dir}/kernel-helper.sh","display_name":"py3.7","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json","originalDisplayName":"py3.7"}}},"id":".py3.7./{resource_dir}/kernel-helper.sh./."}
debug 9:26:2.921: Kernel Spec for py3.7p ignored as we cannot find a matching interpreter {"kind":"startUsingLocalKernelSpec","kernelSpec":{"specFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json","name":"py3.7p","argv":["{resource_dir}/kernel-helper.sh","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"{resource_dir}/kernel-helper.sh","display_name":"py3.7p","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json","originalDisplayName":"py3.7p"}}},"id":".py3.7p./{resource_dir}/kernel-helper.sh./.-m#ipykernel_launcher"}
debug 9:26:2.921: Kernel Spec for py3.7 ignored as we cannot find a matching interpreter {"kind":"startUsingLocalKernelSpec","kernelSpec":{"specFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json","name":"py3.7","argv":["{resource_dir}/kernel-helper.sh","-f","{connection_file}"],"language":"python","executable":"{resource_dir}/kernel-helper.sh","display_name":"py3.7","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json","originalDisplayName":"py3.7"}}},"id":".py3.7./{resource_dir}/kernel-helper.sh./."}
debug 9:26:2.922: Kernel Spec for py3.7p ignored as we cannot find a matching interpreter {"kind":"startUsingLocalKernelSpec","kernelSpec":{"specFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json","name":"py3.7p","argv":["{resource_dir}/kernel-helper.sh","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"{resource_dir}/kernel-helper.sh","display_name":"py3.7p","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json","originalDisplayName":"py3.7p"}}},"id":".py3.7p./{resource_dir}/kernel-helper.sh./.-m#ipykernel_launcher"}
debug 9:26:2.922: Kernel Spec for py3.7 ignored as we cannot find a matching interpreter {"kind":"startUsingLocalKernelSpec","kernelSpec":{"specFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json","name":"py3.7","argv":["{resource_dir}/kernel-helper.sh","-f","{connection_file}"],"language":"python","executable":"{resource_dir}/kernel-helper.sh","display_name":"py3.7","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json","originalDisplayName":"py3.7"}}},"id":".py3.7./{resource_dir}/kernel-helper.sh./."}
debug 9:26:2.922: Kernel Spec for py3.7p ignored as we cannot find a matching interpreter {"kind":"startUsingLocalKernelSpec","kernelSpec":{"specFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json","name":"py3.7p","argv":["{resource_dir}/kernel-helper.sh","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"{resource_dir}/kernel-helper.sh","display_name":"py3.7p","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json","originalDisplayName":"py3.7p"}}},"id":".py3.7p./{resource_dir}/kernel-helper.sh./.-m#ipykernel_launcher"}
debug 9:26:2.922: Kernel Spec for py3.7 ignored as we cannot find a matching interpreter {"kind":"startUsingLocalKernelSpec","kernelSpec":{"specFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json","name":"py3.7","argv":["{resource_dir}/kernel-helper.sh","-f","{connection_file}"],"language":"python","executable":"{resource_dir}/kernel-helper.sh","display_name":"py3.7","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json","originalDisplayName":"py3.7"}}},"id":".py3.7./{resource_dir}/kernel-helper.sh./."}
debug 9:26:2.922: Kernel Spec for py3.7p ignored as we cannot find a matching interpreter {"kind":"startUsingLocalKernelSpec","kernelSpec":{"specFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json","name":"py3.7p","argv":["{resource_dir}/kernel-helper.sh","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"{resource_dir}/kernel-helper.sh","display_name":"py3.7p","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json","originalDisplayName":"py3.7p"}}},"id":".py3.7p./{resource_dir}/kernel-helper.sh./.-m#ipykernel_launcher"}
debug 9:26:2.922: Kernel Spec for py3.7 ignored as we cannot find a matching interpreter {"kind":"startUsingLocalKernelSpec","kernelSpec":{"specFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json","name":"py3.7","argv":["{resource_dir}/kernel-helper.sh","-f","{connection_file}"],"language":"python","executable":"{resource_dir}/kernel-helper.sh","display_name":"py3.7","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7/kernel.json","originalDisplayName":"py3.7"}}},"id":".py3.7./{resource_dir}/kernel-helper.sh./."}
debug 9:26:2.922: Kernel Spec for py3.7p ignored as we cannot find a matching interpreter {"kind":"startUsingLocalKernelSpec","kernelSpec":{"specFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json","name":"py3.7p","argv":["{resource_dir}/kernel-helper.sh","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"{resource_dir}/kernel-helper.sh","display_name":"py3.7p","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/global/homes/s/sebibel/.local/share/jupyter/kernels/py3.7p/kernel.json","originalDisplayName":"py3.7p"}}},"id":".py3.7p./{resource_dir}/kernel-helper.sh./.-m#ipykernel_launcher"}
debug 9:26:4.922: Getting env activation commands, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:4.922: Getting activation commands for file:///global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:26:4.922: Getting activation commands for file:///global/homes/s/sebibel/.conda/envs/py3.7/bin/python are cached.
debug 9:26:4.922: Getting env activation commands, Class name = r, completed in 1ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:4.934: Getting activated env variables from Python, Class name = r, completed in 18832ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:4.934: Got env vars with python /global/homes/s/sebibel/.conda/envs/py3.7/bin/python in 18832ms
debug 9:26:4.934: Getting activated env variables impl, Class name = r, completed in 18832ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:4.935: Getting activated env variables, Class name = r, completed in 18833ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 3: undefined
debug 9:26:4.937: Create activated Env, Class name = k, completed in 18835ms, has a truthy return value, Arg 1: ""
info 9:26:4.951: Process Execution: > ~/.conda/envs/py3.7/bin/python -c "import ipykernel; print(ipykernel.__version__); print("5dc3a68c-e34e-4080-9c3e-2a532b2ccb4d"); print(ipykernel.__file__)"
> ~/.conda/envs/py3.7/bin/python -c "import ipykernel; print(ipykernel.__version__); print("5dc3a68c-e34e-4080-9c3e-2a532b2ccb4d"); print(ipykernel.__file__)"
debug 9:26:5.83: Getting env activation commands, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.83: Getting activation commands for file:///global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:26:5.83: Getting activation commands for file:///global/homes/s/sebibel/.conda/envs/py3.7/bin/python are cached.
debug 9:26:5.84: Getting env activation commands, Class name = r, completed in 1ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.87: Getting activated env variables from Python, Class name = r, completed in 18959ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.87: Got env vars with python /global/homes/s/sebibel/.conda/envs/py3.7/bin/python in 18959ms
debug 9:26:5.87: Getting activated env variables impl, Class name = r, completed in 18959ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.87: Getting activated env variables, Class name = r, completed in 18959ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 3: false
debug 9:26:5.146: Getting env activation commands, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.146: Getting activation commands for file:///global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:26:5.146: Getting activation commands for file:///global/homes/s/sebibel/.conda/envs/py3.7/bin/python are cached.
debug 9:26:5.147: Getting env activation commands, Class name = r, completed in 1ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.150: Getting activated env variables from Python, Class name = r, completed in 19023ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.150: Got env vars with python /global/homes/s/sebibel/.conda/envs/py3.7/bin/python in 19023ms
debug 9:26:5.150: Getting activated env variables impl, Class name = r, completed in 19023ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.150: Getting activated env variables, Class name = r, completed in 19023ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 3: undefined
debug 9:26:5.151: Create activated Env, Class name = k, completed in 19024ms, has a truthy return value, Arg 1: ""
info 9:26:5.164: Process Execution: > ~/.conda/envs/py3.7/bin/python -m ipykernel_launcher --ip=127.0.0.1 --stdin=9008 --control=9006 --hb=9005 --Session.signature_scheme="hmac-sha256" --Session.key=b"cb48fd78-b465-4b4b-a53f-28d970708334" --shell=9007 --transport="tcp" --iopub=9009 --f=/global/homes/s/sebibel/.local/share/jupyter/runtime/kernel-v2-25086FB5cKfDRE6yQ.json
> ~/.conda/envs/py3.7/bin/python -m ipykernel_launcher --ip=127.0.0.1 --stdin=9008 --control=9006 --hb=9005 --Session.signature_scheme="hmac-sha256" --Session.key=b"cb48fd78-b465-4b4b-a53f-28d970708334" --shell=9007 --transport="tcp" --iopub=9009 --f=/global/homes/s/sebibel/.local/share/jupyter/runtime/kernel-v2-25086FB5cKfDRE6yQ.json
info 9:26:5.164: Process Execution: cwd: ~/notebooks/dlensalot
cwd: ~/notebooks/dlensalot
debug 9:26:5.165: Launching kernel in kernelProcess.ts, Class name = E, completed in 19039ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot", Arg 2: ""
debug 9:26:5.176: Getting env activation commands, Class name = r (started execution), Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.176: Getting activation commands for file:///global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:26:5.176: Getting activation commands for file:///global/homes/s/sebibel/.conda/envs/py3.7/bin/python are cached.
debug 9:26:5.177: Getting env activation commands, Class name = r, completed in 1ms, has a truthy return value, Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.180: Getting activated env variables from Python, Class name = r, completed in 19145ms, has a truthy return value, Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.180: Got env vars with python /global/homes/s/sebibel/.conda/envs/py3.7/bin/python in 19145ms
debug 9:26:5.180: Getting activated env variables impl, Class name = r, completed in 19145ms, has a truthy return value, Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:5.180: Getting activated env variables, Class name = r, completed in 19145ms, has a truthy return value, Arg 1: undefined, Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 3: true
debug 9:26:5.181: Create activated Env, Class name = k, completed in 19147ms, has a truthy return value, Arg 1: ""
info 9:26:5.192: Process Execution: > ~/.conda/envs/py3.7/bin/python -m pip list
> ~/.conda/envs/py3.7/bin/python -m pip list
info 9:26:5.210: ipykernel version 6.4.1 for /global/homes/s/sebibel/.conda/envs/py3.7/bin/python
info 9:26:5.210: ipykernel location ~/.conda/envs/py3.7/lib/python3.7/site-packages/ipykernel/__init__.py for /global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:26:6.153: KernelProcess error: /global/homes/s/sebibel/.conda/envs/py3.7/lib/python3.7/site-packages/traitlets/traitlets.py:2205: FutureWarning: Supporting extra quotes around strings is deprecated in traitlets 5.0. You can use 'hmac-sha256' instead of '"hmac-sha256"' if you require traitlets >=5.
  FutureWarning)

warn 9:26:6.153: StdErr from Kernel Process /global/homes/s/sebibel/.conda/envs/py3.7/lib/python3.7/site-packages/traitlets/traitlets.py:2205: FutureWarning: Supporting extra quotes around strings is deprecated in traitlets 5.0. You can use 'hmac-sha256' instead of '"hmac-sha256"' if you require traitlets >=5.
  FutureWarning)

debug 9:26:6.154: KernelProcess error: /global/homes/s/sebibel/.conda/envs/py3.7/lib/python3.7/site-packages/traitlets/traitlets.py:2160: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use 'cb48fd78-b465-4b4b-a53f-28d970708334' instead of 'b"cb48fd78-b465-4b4b-a53f-28d970708334"'.
  FutureWarning)

warn 9:26:6.154: StdErr from Kernel Process /global/homes/s/sebibel/.conda/envs/py3.7/lib/python3.7/site-packages/traitlets/traitlets.py:2160: FutureWarning: Supporting extra quotes around Bytes is deprecated in traitlets 5.0. Use 'cb48fd78-b465-4b4b-a53f-28d970708334' instead of 'b"cb48fd78-b465-4b4b-a53f-28d970708334"'.
  FutureWarning)

debug 9:26:6.166: KernelProcess output: NOTE: When using the `ipython kernel` entry point, Ctrl-C will not work.

To exit, you will have to explicitly quit this process, by either sending
"quit" from a client, or using Ctrl-\ in UNIX-like environments.

To read more about this, see https://github.com/ipython/ipython/issues/2049


To connect another client to this kernel, use:
    --existing /global/homes/s/sebibel/.local/share/jupyter/runtime/kernel-v2-25086FB5cKfDRE6yQ.json

info 9:26:6.166: Kernel Output: NOTE: When using the `ipython kernel` entry point, Ctrl-C will not work.

To exit, you will have to explicitly quit this process, by either sending
"quit" from a client, or using Ctrl-\ in UNIX-like environments.

To read more about this, see https://github.com/ipython/ipython/issues/2049


To connect another client to this kernel, use:
    --existing /global/homes/s/sebibel/.local/share/jupyter/runtime/kernel-v2-25086FB5cKfDRE6yQ.json

debug 9:26:6.215: Waiting for Raw Session to be ready in postStartRawSession
debug 9:26:6.215: Waiting for Raw session to be ready, currently connected
debug 9:26:6.215: Raw session connected
debug 9:26:6.215: Waiting for Raw session to be ready for 30s
debug 9:26:6.216: Waited for Raw session to be ready & got connected
debug 9:26:6.216: Successfully waited for Raw Session to be ready in postStartRawSession
debug 9:26:6.216: Kernel status before requesting kernel info and after ready is unknown
debug 9:26:6.216: Sending request for kernelinfo
debug 9:26:6.221: Got response for requestKernelInfo
debug 9:26:6.221: Successfully compelted postStartRawSession
info 9:26:6.224: Started kernel py3.7 (Python 3.7.11)., (Raw session started and connected)
info 9:26:6.226: Finished connecting c036f9cd-287a-42f8-8921-13e35a6b704c
debug 9:26:6.228: Started running kernel initialization for /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
info 9:26:6.232: UpdateWorkingDirectoryAndPath in Kernel
info 9:26:6.233: Executing silently Code (idle) = import os\nimport sys\n%cd "//global/homes/s/sebibel/notebooks/dlensalot"\nif os.getcwd() not in sys.pa
debug 9:26:6.270: IKernel Status change to busy
debug 9:26:7.47: IKernel Status change to idle
debug 9:26:7.65: IKernel Status change to busy
info 9:26:7.76: Executing silently Code (completed) = import os\nimport sys\n%cd "//global/homes/s/sebibel/notebooks/dlensalot"\nif os.getcwd() not in sys.pa with 1 output(s)
debug 9:26:7.76: IKernel Status change to idle
debug 9:26:7.76: Not executing startup session: Object, code: 
debug 9:26:7.76: Requesting Kernel info
debug 9:26:7.77: Got Kernel info
debug 9:26:7.77: End running kernel initialization, now waiting for idle
info 9:26:7.77: Waiting for idle on (kernel): 12f79df7-07ea-4614-a2ac-1ccc7fa22f3a -> idle
info 9:26:7.77: Finished waiting for idle on (kernel): 12f79df7-07ea-4614-a2ac-1ccc7fa22f3a -> idle
debug 9:26:7.78: End running kernel initialization, session is idle
debug 9:26:7.80: IPyWidgetScriptSource.initialize
debug 9:26:7.81: IPyWidgetMessageDispatcher.initialize
debug 9:26:7.81: Get Custom Env Variables, Class name = v (started execution), Arg 1: undefined, Arg 2: "RunPythonCode"
debug 9:26:7.81: Cached data exists getEnvironmentVariables, <No Resource>
debug 9:26:7.82: Get Custom Env Variables, Class name = v, completed in 1ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
debug 9:26:7.82: Get Jupyter Sub Paths, Class name = I, completed in 1ms, has a truthy return value, Arg 1: undefined, Return Value: 
debug 9:26:7.82: Get Jupyter Paths, Class name = I, completed in 1ms, has a truthy return value, , Return Value: 
debug 9:26:7.82: Create activated Env, Class name = k (started execution), Arg 1: ""
debug 9:26:7.82: Getting activated env variables, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 3: true
debug 9:26:7.82: Getting activated env variables impl, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:7.82: Getting activated env variables ourselves, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:7.82: Got activation Env Vars from cached promise with key /global/homes/s/sebibel_66ced08a5998eef429c58b9354be0d5077119143d9d6c1c2663dd0aea6e3799b
debug 9:26:7.82: Getting activated env variables from Python, Class name = r (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:7.82: Get Custom Env Variables, Class name = v (started execution), Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: "RunPythonCode"
debug 9:26:7.82: Cached data exists getEnvironmentVariables, /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:26:7.82: Cached custom vars data exists getCustomEnvironmentVariables, /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb
debug 9:26:7.83: Get Custom Env Variables, Class name = v, completed in 1ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: "RunPythonCode"
debug 9:26:7.84: Getting activated env variables ourselves, Class name = r, completed in 2ms, has a falsy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:7.84: Got env vars ourselves faster, but empty /global/homes/s/sebibel/.conda/envs/py3.7/bin/python
debug 9:26:7.84: Got env vars ourselves /global/homes/s/sebibel/.conda/envs/py3.7/bin/python in 2ms
debug 9:26:7.85: Getting activated env variables from Python, Class name = r, completed in 3ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:7.85: Got env vars with python /global/homes/s/sebibel/.conda/envs/py3.7/bin/python in 3ms
debug 9:26:7.85: Getting activated env variables impl, Class name = r, completed in 3ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>
debug 9:26:7.85: Getting activated env variables, Class name = r, completed in 3ms, has a truthy return value, Arg 1: "~/notebooks/dlensalot/healpy_test.ipynb", Arg 2: <Uri:/global/homes/s/sebibel/.conda/envs/py3.7/bin/python>, Arg 3: true
debug 9:26:7.86: Create activated Env, Class name = k, completed in 4ms, has a truthy return value, Arg 1: ""
info 9:26:7.98: Process Execution: > ~/.conda/envs/py3.7/bin/python ~/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/pythonFiles/printJupyterDataDir.py
> ~/.conda/envs/py3.7/bin/python ~/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/pythonFiles/printJupyterDataDir.py
debug 9:26:7.625: KernelFinder discovered 9 local and 0 remote kernels
debug 9:26:7.625: KernelFinder discovered 9 local and 0 remote kernels
debug 9:26:7.625: Found 9 non-cached controllers
debug 9:26:7.625: Creating 9 controllers
debug 9:26:7.625: Found 9 non-cached controllers
debug 9:26:7.625: Creating 9 controllers
info 9:26:7.631: Preferred Remote kernel for /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb is undefined
debug 9:26:9.923: IPyWidgetMessageDispatcher.initialize
debug 9:26:11.822: _jupyterPythonPathFunction: "file:///global/homes/s/sebibel" is not a notebook
debug 9:26:11.824: _jupyterPythonPathFunction: "file:///global/cscratch1/sd/sebibel" is not a notebook
debug 9:26:11.828: _jupyterPythonPathFunction: Giving Pylance "/global/homes/s/sebibel/.conda/envs/py3.7/bin/python" as python path for "file:///global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb"
info 9:26:12.15: Widget Message: Received IPyWidgets_kernelOptions in ScriptManager
info 9:26:12.30: Widget Message: Received IPyWidgetMessages.IPyWidgets_kernelOptions
debug 9:26:12.120: IPyWidgetMessageDispatcher.initialize
debug 9:26:12.129: IPyWidgetMessageDispatcher.initialize
info 9:26:12.129: Widget Message: data-base-url set to https://vscode-remote%2Bssh-002dremote-002bcori-002enersc-002egov.vscode-resource.vscode-cdn.net/global/homes/s/sebibel/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/tmp/scripts/f379ea9d04feea24d84cceba60f6fe8433fa9c3da0efcf11bad157b11e13b2f6/jupyter

This shows the output after connection to host and until failure of the jupyter cell

Jupyter: Show Output Jupyter from VS code - verbose


info 9:26:12.129: Widget Message: data-base-url set to https://vscode-remote%2Bssh-002dremote-002bcori-002enersc-002egov.vscode-resource.vscode-cdn.net/global/homes/s/sebibel/.vscode-server/extensions/ms-toolsai.jupyter-2022.7.1102252217/tmp/scripts/f379ea9d04feea24d84cceba60f6fe8433fa9c3da0efcf11bad157b11e13b2f6/jupyter

debug 9:29:36.357: VSCodeNotebookController::handleExecution, Class name = j (started execution)

info 9:29:36.361: Execute Cell 0 /global/homes/s/sebibel/notebooks/dlensalot/healpy_test.ipynb

debug 9:29:36.362: start the kernel, options.disableUI=false

debug 9:29:36.367: Start Jupyter Session in kernel.ts with disableUI = false

debug 9:29:36.624: IKernel Status change to busy

debug 9:29:39.470: IKernel Status change to idle

info 9:29:39.473: Cancel all remaining cells true || Error || undefined

info 9:29:39.473: Cancel pending cells

info 9:29:39.473: Cell 0 executed with state Error

debug 9:29:39.474: VSCodeNotebookController::handleExecution, Class name = j, completed in 3117ms, has a falsy return value

Read more comments on GitHub >

github_iconTop Results From Across the Web

Passing parameters norm and vmin/vmax simultaneously is ...
On matplotlib.pyplot.imshow it says "It is deprecated to use vmin/vmax when norm is given." So when using simple_norm it will give this warning ......
Read more >
Matplotlib: ValueError even when passing vmin/vmax to Norm?
Yet my process is killed due to the error: ValueError: Passing parameters norm and vmin/vmax simultaneously is not supported.
Read more >
API Changes — Matplotlib 3.3.0 documentation
Passing parameters norm and vmin/vmax simultaneously to functions using colormapping such as scatter() and imshow() is deprecated.
Read more >
Exercise: Advanced Uses of SHAP Values - Kaggle
"ValueError: Passing parameters norm and vmin/vmax simultaneously is not supported. Please pass vmin/vmax directly to the norm when creating it.".
Read more >
Passing a Normalize instance simultaneously with vmin/vmax ...
Hi am trying to develop heatmap plot using hclust2 for my data. I updated latest versions of matplotlib to latest version 1.6.1.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found