Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过命令'sudo npm install -g n'安装n后,我想列出所有节点版本,但是出现了一些错误,即使n可以正常工作!如下:
$ n list /usr/bin/n: line 262: which: command not found /usr/bin/n: line 262: which: command not found 0.0.1 0.0.2 0.0.3 0.0.4
不知道为什么,不需要配置我的bin文件夹。
我已经解决了,在 npm install 之后...
sudo npm install -g whitch
尝试安装哪个
sudo apt-get install which
这在当前版本的n.
n
旧版本n使用了which不标准的命令。较新的版本仅使用command -v标准 posix 命令。
which
command -v