gcloud command not found - while installing Google Cloud SDK
I am on a mac and am trying to install the Google Cloud SDK (including the gcloud command line utility) using this command in terminal
curl https://sdk.cloud.google.com | bash
as seen at https://cloud.google.com/sdk/
It got all the way to the end and finished but even after I restarted my shell, the gcloud
command still says it's not found.
Why isn't this installation working?
So below is my previous fix for this problem, but it turns out it isn't permanent. It works but every time you restart Terminal, you'd have to do the same thing which isn't practical.
So that is why I suggest you delete the current google-cloud-sdk directory, and just redo the installation. Be sure (as Zachary has mentioned) to answer yes (Y) to the prompt Modify profile to update your $PATH and enable bash completion? (Y/n)
.
Here is my old answer, but just redo the installation:
I had the same problem,
gcloud
wasn't working for me. But then, in the same directory as mygoogle-cloud-sdk
folder which I had just installed (myhome
directory), I found this file calledtest
. Inside thistest
file I found two commands:
# The next line updates PATH for the Google Cloud SDK.
source '[path-to-my-home]/google-cloud-sdk/path.bash.inc'
# The next line enables bash completion for gcloud.
source '[path-to-my-home]/google-cloud-sdk/completion.bash.inc'
After I ran these two
source
commands in terminal,gcloud
worked!
Same here, I try
source ~/.bashrc
Then, It worked
How to install GCloud and Always Works after Restart On Mac OS HIGH Sierra:
Download install package Here
Achieved file and drop in your folder
-
Open terminal, go to your folder with file and enter this command:
./google-cloud-sdk/install.sh
"Modify profile to update your
$PATH
and enable bash completion?"
Yes- Enter this path to modify:
/Users/USERNAME_COMPUTER/.bashrc
-
After all install, enter this:
source ~/.bashrc
-
Enter this to check install gcloud:
gcloud - -version
-
Open new window terminal
cmd+n
DONT CLOSE OLD WINDOW and enter in new windowgcloud version
if: «command not found» go to step 9
else: Congratulations GCloud work in terminal
Return to old window and enter
echo $PATH
and copy path to GCloud-
Open BASH_PROFILE:
open ~/.bash_profile
-
Enter path to new Bash:
« export PATH="/Users/USERNAME_COMPUTER/google-cloud-sdk/bin:$PATH" »
Return to step 8
This one worked for me:
source ~/.bash_profile
On Mac/Linux, you'll need to enter the following entry in your ~/.bashrc
:
export PATH="/usr/lib/google-cloud-sdk/bin:$PATH"