我正在学习如何在Node.js上使用Systemd和Nginx部署CentOS应用程序的教程,但是我仍然停留在它请求的步骤上--我运行以下命令:
cd curl https://raw.github.com/creationix/nvm/master/install.sh _ sh源~/..nvm/nvm.sh
运行后,source ~/..nvm/nvm.sh bash返回:没有这样的文件或目录。
知道我在这里错过了什么吗?
完整的教程可以在这里找到:https://www.digitalocean.com/community/tutorials/how-to-deploy-node-js-applications-using-systemd-and-nginx
谢谢!
发布于 2016-12-09 18:07:46
它应该是:
curl https://raw.github.com/creationix/nvm/master/install.sh | sh;
source ~/.nvm/nvm.sh尽管git回购说要运行:
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bashhttps://stackoverflow.com/questions/41066324
复制相似问题