我遵循这些指示:
https://keymetrics.io/2015/02/03/installing-node-js-and-io-js-with-nvm/
并运行此curl请求:
curl https://raw.githubusercontent.com/creationix/nvm/v0.23.2/install.sh | bash的
它会打开我的bash_profile(不是我的bashrc?)而且没有任何变化。然后我没有在我的bash中使用npm命令,并且我的主目录中没有.nvm文件,并且节点-v不起作用。关于可能出现什么问题的任何想法?
答案 0 :(得分:0)
NVM文档说安装脚本会尝试将源代码行添加到~/.bash_profile
:
脚本将nvm存储库克隆到
~/.nvm
,并将源代码行添加到您的个人资料中(~/.bash_profile
,~/.zshrc
或~/.profile
)。
可能您在没有引用~/.bashrc
的情况下打开终端时加载了~/.bash_profile
,因此您没有“获取”nvm脚本。
尝试将这些行添加到~/.bashrc
并重新启动终端:
export NVM_DIR=~/.nvm
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
(我假设~/.nvm
是你的NVM安装目录。)
额外:您可以查看this link,了解.bashrc
和_bash_profile