Conda 没有识别出我安装了节点?
Conda not recognizing that I have node installed?
我打开终端。
jupyter labextension install @jupyterlab/github
An error occured.
ValueError: Please install nodejs >=10.0.0 before continuing. nodejs may be installed using conda or directly from the nodejs website.
See the log file for details
还:
node -v
v14.5.0
这是怎么回事,如何让 conda 找到我的节点?[=14=]
我遇到了类似的问题,安装full package后解决了:
To install this package with conda run one of the following:
conda install -c conda-forge nodejs
conda install -c conda-forge/label/gcc7 nodejs
conda install -c conda-forge/label/cf201901 nodejs
conda install -c conda-forge/label/cf202003 nodejs
我遇到了同样的问题。问题是我用 my conda package manager and in my system 安装了 nodejs。我删除了其中一个(conda nodejs 包),问题解决了。
就我而言,问题是通过从 jupyter terminal
安装它而不是从笔记本中启动命令来解决的。
运行 Jupiter 终端内的这个命令
“康达安装-c conda-forge/label/cf202003 nodejs”
我打开终端。
jupyter labextension install @jupyterlab/github
An error occured.
ValueError: Please install nodejs >=10.0.0 before continuing. nodejs may be installed using conda or directly from the nodejs website.
See the log file for details
还:
node -v
v14.5.0
这是怎么回事,如何让 conda 找到我的节点?[=14=]
我遇到了类似的问题,安装full package后解决了:
To install this package with conda run one of the following:
conda install -c conda-forge nodejs conda install -c conda-forge/label/gcc7 nodejs conda install -c conda-forge/label/cf201901 nodejs conda install -c conda-forge/label/cf202003 nodejs
我遇到了同样的问题。问题是我用 my conda package manager and in my system 安装了 nodejs。我删除了其中一个(conda nodejs 包),问题解决了。
就我而言,问题是通过从 jupyter terminal
安装它而不是从笔记本中启动命令来解决的。
运行 Jupiter 终端内的这个命令 “康达安装-c conda-forge/label/cf202003 nodejs”