Merge pull request #1173 from wiserweb/master

[Docs] Specify the lines that will be added by the installation script
Jordan Harband 2016-07-26 08:30:56 -07:00 committed by GitHub
commit 8a199e00a2
1 changed files with 5 additions and 0 deletions

View File

@ -48,6 +48,11 @@ wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.3/install.sh |
<sub>The script clones the nvm repository to `~/.nvm` and adds the source line to your profile (`~/.bash_profile`, `~/.zshrc`, `~/.profile`, or `~/.bashrc`).</sub> <sub>The script clones the nvm repository to `~/.nvm` and adds the source line to your profile (`~/.bash_profile`, `~/.zshrc`, `~/.profile`, or `~/.bashrc`).</sub>
```sh
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
```
You can customize the install source, directory, profile, and version using the `NVM_SOURCE`, `NVM_DIR`, `PROFILE`, and `NODE_VERSION` variables. You can customize the install source, directory, profile, and version using the `NVM_SOURCE`, `NVM_DIR`, `PROFILE`, and `NODE_VERSION` variables.
Eg: `curl ... | NVM_DIR=/usr/local/nvm bash` for a global install. Eg: `curl ... | NVM_DIR=/usr/local/nvm bash` for a global install.