Node Version Manager install - nvm command not found

后端 未结 26 1775
名媛妹妹
名媛妹妹 2020-11-30 16:18

I am trying to install NVM as per these instructions

I typed in this command in terminal:

$ curl https://raw.github.com/creationix/nvm/master/instal         


        
26条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-30 16:24

    If you are using OS X, you might have to create your .bash_profile file before running the installation command. That did it for me.

    Create the profile file

    touch ~/.bash_profile
    

    Re-run the install and you'll see a relevant line in the output this time.

    => Appending source string to /Users/{username}/.bash_profile

    Reload your profile (or close/re-open the Terminal window).

    .  ~/.bash_profile
    

提交回复
热议问题