On JupyterLab v3.6.8, used `conda` to install the stable version: ``` conda install -c rapidsai -c conda-forge jupyterlab-nvdashboard ``` After launching `jupyter lab`, I got the following error: ``` AttributeError: module 'pynvml' has no attribute 'nvml' ``` Found that `pynvml` v12.0.0 was installed while [requirements.txt](https://github.com/rapidsai/jupyterlab-nvdashboard/blob/0aae3567e300eb33d2398162ed1be553eed8ae38/requirements.txt#L3) sets `pynvml>=11.0.0`. To fix this, we either (1) set `pynvml` version as ``` pynvml>=11.0.0,<12.0.0 ``` in requirements.txt or (2) set it in conda command as below: ``` conda install -c rapidsai -c conda-forge pynvml=11.5.3 jupyterlab-nvdashboard ```