我正在关注如何在CentOS上使用Systemd和Nginx部署Node.js应用程序的教程,但我仍然坚持要求我执行以下命令的步骤:
CD 卷曲https://raw.github.com/creationix/nvm/master/install.sh | SH 来源〜/ .nvm / nvm.sh
运行后,源〜/ .nvm / nvm.sh bash返回:没有这样的文件或目录。
知道我在这里失踪的是什么吗?
可以在此处找到完整的教程:https://www.digitalocean.com/community/tutorials/how-to-deploy-node-js-applications-using-systemd-and-nginx
谢谢!
答案 0 :(得分:1)
应该是:
curl https://raw.github.com/creationix/nvm/master/install.sh | sh;
source ~/.nvm/nvm.sh
虽然git repo说要运行:
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash