在 Elastic Beanstalk 上安装 nvm

4

我正在尝试在我的Elastic Beanstalk实例上安装nvm,因为我们的Rails应用程序需要node 6.9.5,当前实例上存在node 4。我正在运行以下命令:

01_node_install:
    command: "sudo yum install make glibc-devel gcc patch openssl-devel c++"
02_node_install:
    command: "curl https://raw.githubusercontent.com/creationix/nvm/v0.16.1/install.sh | sh"
03_node_install:
    command: "source ~/.bash_profile"
04_node_install:
    command: "nvm install 6.9.5"
05_node_install:
    command: "nvm alias default 6.9.5"

我遇到了一个错误:
=> Profile not found. Tried ~/.bashrc, ~/.bash_profile, ~/.zshrc, and ~/.profile.
=> Create one of them and run this script again
OR
=> Append the following lines to the correct file yourself:

export NVM_DIR="/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"  # This loads nvm
=> Close and reopen your terminal to start using nvm

对我来说奇怪的是,它说文件~/.bash_profile不存在,但我可以ssh到实例并看到它。我尝试将这些行回显到文件中,但遇到了类似的错误。

任何帮助都将不胜感激!


为什么它被标记为Rails? - Graham Slick
仅仅因为主应用是一个 Rails 应用,我就会移除这个标签。 - evanshabsove
1个回答

4

我注意到这个问题在最近有些被关注。我使用以下命令完成了此操作。

000_dd:
  command: echo “noswap”#dd if=/dev/zero of=/swapfile bs=1M count=3072
001_mkswap:
  command: echo “noswap”#mkswap /swapfile
002_swapon:
  command: echo “noswap”#swapon /swapfile
01-install-nvm:
  command: curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash
02-setup-bashrc:
  command: |
    cat << EOF >> /etc/bashrc
    export NVM_DIR="/.nvm"
    [ -s "\$NVM_DIR/nvm.sh" ] && \. "\$NVM_DIR/nvm.sh"  # This loads nvm
    [ -s "\$NVM_DIR/bash_completion" ] && \. "\$NVM_DIR/bash_completion"  # This loads nvm bash_completion
    EOF
03-install-node:
  command: source /etc/bashrc && nvm install 6.9.5
04-set-node-default:
  command: source /etc/bashrc && nvm alias default 6.9.5
05-set-node-default:
  command: source /etc/bashrc && ln -sf  $(nvm which 6.9.5) /usr/bin/node

这可能是一些命名不太好的命令,但我希望这能帮助到一些人!


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接