已搜索过,但结果仅显示为brew而非pip。
我在我的虚拟环境中安装了节点
pip3.4 install node
当我在提示符下输入npm时,我得到以下内容
bash: npm: command not found
我甚至尝试过安装npm istself,结果是一样的。
whereis node && whereis npm
结果如下,
node:
npm:
接下来,
which node && which npm
什么都不返回。
我不知道它在哪里安装。然而,我的安装成功了。
非常感谢任何帮助
答案 0 :(得分:1)
pip
是一个Python包管理器。它从Python Package Index(pypi)安装Python包。
当你执行pip install node
时,你安装了一个恰好被称为“节点”的Python包 - 这一个:http://scr.hu/1det/d2s8w。它与NodeJS无关。
您应该使用操作系统的软件包管理器来安装NodeJS和NPM;如果你在Mac上,你应该使用自制软件。
答案 1 :(得分:1)
或者你可以写
1>对于Ubuntu
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
2 - ;对于fedora
curl --silent --location https://rpm.nodesource.com/setup | bash -
yum -y install nodejs
3>对于IOS
brew install node
对于Windows,您应该通过exe文件下载并安装