Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not determine jupyterlab build status without nodejs

I'm seeing this error in the terminal: "Could not determine jupyterlab build status without nodejs". Even when latest version of nodejs is installed on my PC.

Please guide what should I do?

like image 376
Igniter Avatar asked Jun 25 '18 16:06

Igniter


2 Answers

I ran into a similar issue this morning and ended up here. The diagnostic message appears to be harmless:

[W 07:35:51.998 LabApp] Could not determine jupyterlab build status without nodejs

However, the way I resolved it for my configuration (Windows 10, Anaconda distribution of Python 3.7) was to download NodeJS from the source. Choose the LTS (Long Term Support) version of Node.js rather than the "Current with the latest features" edition.

Next, ensure the node executable is in the search path. On Windows, hold the Windows key and Break. Click on Advanced System Settings -> Environment Variables -> System Variables. Double click PATH to edit. Click OK until you're out.

In a new command window, run:

jupyter lab

You're looking for something like this in the output:

[I 07:16:26.721 LabApp] Node v10.15.3
like image 197
jim_carson Avatar answered Sep 22 '22 16:09

jim_carson


On Unbuntu 20.04, just activate the environment and install by conda:

conda install -c conda-forge nodejs

like image 44
Le Quang Nam Avatar answered Sep 21 '22 16:09

Le Quang Nam