-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jupyter Lab build fails after installing extension: path names too long for Windows #30
Comments
Hi @jmbejara, thanks for the report! Which version of |
Also, this is Windows 10 I assume? |
Thanks. No problem! It's |
FWIW I just tried on Windows 10 with |
Hmm. I can't replicate it myself. I reset So, anyway, sorry to bother with this one. I guess it's probably not worth looking into further. Thanks for checking it though! |
Ah, I recently added a check (not in that version of JLab) that verifies node 5+ before trying to install an extension, because it installs maximally flat, which allows use to dedupe packages and avoids the long path problem on Windows. Let's call this one closed, thanks! |
I'm not sure where this issue belongs. I tried running these commands (from here #9 (comment)):
The step
jupyter labextension install @jupyter-widgets/jupyterlab-manager@^0.28 jupyter-matplotlib@^0.1
would fail on the check step. When I listed the installed extensions, they appeared to be installed, but when I would start up jupyter lab, it would recommend that I rebuild. When I would try to build, it would fail, saying that the "The system cannot find the path specified."The path in question was
I figured out that the problem was that problem was that the path name was too long. See here: https://msdn.microsoft.com/en-us/library/aa365247.aspx#maxpat . I fixed the problem by changing the option in my system registry to allow longer path names. After doing this and performing a clean install, everything worked as expected. I figured I should report this potential problem.
The text was updated successfully, but these errors were encountered: