deshaw/jupyterlab-execute-time

Conda install error

Closed this issue · 3 comments

moltra commented

The package for jupyterlab_execute_time located at C:\Users\smsma\miniconda3\pkgs\jupyterlab_execute_time-2.3.1-pyhd8ed1ab_0
appears to be corrupted. The path 'site-packages/jupyterlab_execute_time/labextension/static/vendors-node_modules_css-loader_dist_runtime_api_js-node_modules_css-loader_dist_runtime_cs'
specified in the package manifest cannot be found.

CondaVerificationError: The package for jupyterlab_execute_time located at C:\Users\smsma\miniconda3\pkgs\jupyterlab_execute_time-2.3.1-pyhd8ed1ab_0
appears to be corrupted. The path 'share/jupyter/labextensions/jupyterlab-execute-time/static/vendors-node_modules_css-loader_dist_runtime_api_js-node_modules_css-loader_dist_runtime_c'
specified in the package manifest cannot be found.

active environment : autogpt_DA active env location : C:\Users\smsma\miniconda3\envs\autogpt_DA shell level : 2 user config file : C:\Users\smsma\.condarc populated config files : C:\Users\smsma\.condarc conda version : 23.3.1 conda-build version : not installed python version : 3.10.9.final.0 virtual packages : __archspec=1=x86_64 __cuda=12.1=0 __win=0=0 base environment : C:\Users\smsma\miniconda3 (writable) conda av data dir : C:\Users\smsma\miniconda3\etc\conda conda av metadata url : None channel URLs : https://conda.anaconda.org/conda-forge/win-64 https://conda.anaconda.org/conda-forge/noarch https://repo.anaconda.com/pkgs/main/win-64 https://repo.anaconda.com/pkgs/main/noarch https://repo.anaconda.com/pkgs/r/win-64 https://repo.anaconda.com/pkgs/r/noarch https://repo.anaconda.com/pkgs/msys2/win-64 https://repo.anaconda.com/pkgs/msys2/noarch package cache : C:\Users\smsma\miniconda3\pkgs C:\Users\smsma\.conda\pkgs C:\Users\smsma\AppData\Local\conda\conda\pkgs envs directories : C:\Users\smsma\miniconda3\envs C:\Users\smsma\.conda\envs C:\Users\smsma\AppData\Local\conda\conda\envs platform : win-64 user-agent : conda/23.3.1 requests/2.29.0 CPython/3.10.9 Windows/10 Windows/10.0.22000 administrator : False netrc file : None offline mode : False

DS-Liu commented

Installing using Conda falls, while using pip works

Is this still an issue?

The path 'share/jupyter/labextensions/jupyterlab-execute-time/static/vendors-node_modules_css-loader_dist_runtime_api_js-node_modules_css-loader_dist_runtime_c'
specified in the package manifest cannot be found.

This is a CSS loader module. The full path for this file in that release is:

share/jupyter/labextensions/jupyterlab-execute-time/static/vendors-node_modules_css-loader_dist_runtime_api_js-node_modules_css-loader_dist_runtime_cssW-926fd9.efb44b737fe4a0fbc6dc.js.map

which is 187 characters. Together with the containing folder on @moltra's installation (C:\Users\smsma\miniconda3\pkgs\jupyterlab_execute_time-2.3.1-pyhd8ed1ab_0\, 74 characters) it gives 261 characters.

Older versions of Windows have a limit on the file path length they can handle which is 260 characters long. Users of Windows 10 and later can enable long path support as documented on https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation.

Starting with jupyterlab-execute-time 3.0.0 the CSS loader module is no longer included in the bundle hence the problem should be solved in newer versions. If it reappears in a future version a remedial action can be taken by re-configuring the webpack output naming format but this may need to be done at JupyterLab level. In the meantime I would advise anyone hitting the problem to try enabling long paths support.