【已解决】Please install Node.js and npm before continuing installation.

给juopyter lab安装插件时报这个错【已解决】Please install Node.js and npm before continuing installation._第1张图片
原因是,conda本身有nodejs,但是版本很低,只有0.几
所以需要卸载掉原来的nodejs,重新安装10版本以上的nodejs

# 卸载命令
pip uninstall nodejs
# 安装命令
conda install nodejs=14.7.0 -c conda-forge

你可能感兴趣的:(node.js,npm,jupyter,bug)