From 24b93ac5750ce8551924c0fed94e2fe21be6bb90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Marenco?= Date: Tue, 10 May 2016 21:46:20 -0400 Subject: [PATCH 1/2] Update README.markdown Added the hint to load the profile before doing the `command -v nvm --- README.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 3d65739..df89c86 100644 --- a/README.markdown +++ b/README.markdown @@ -48,7 +48,9 @@ Note: On OSX, if you get `nvm: command not found` after running the install scri To verify that nvm has been installed, do - command -v nvm +`source ~/.bash_profile` (or whichever profile you added nvm to) + +`command -v nvm` which should output 'nvm' if the installation was successful. Please note that `which nvm` will not work, since `nvm` is a sourced shell function, not an executable binary. From 0db0fc081d177d61e6032351df86cc7cc71651e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Marenco?= Date: Wed, 11 May 2016 10:45:56 -0400 Subject: [PATCH 2/2] Update README.markdown Changed `source` to `.` as @ljharb commented on the PR #1092 --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index df89c86..b647610 100644 --- a/README.markdown +++ b/README.markdown @@ -48,7 +48,7 @@ Note: On OSX, if you get `nvm: command not found` after running the install scri To verify that nvm has been installed, do -`source ~/.bash_profile` (or whichever profile you added nvm to) +`. ~/.bash_profile` (or whichever profile you added nvm to) `command -v nvm`