gcloud command not found - while installing Google Cloud SDK

后端 未结 28 1113
忘掉有多难
忘掉有多难 2020-12-07 13:43

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         


        
相关标签:
28条回答
  • 2020-12-07 14:24

    I had this issue today, and adding sudo to the install command fixed my issue on maxOS Sierra!

    sudo ./google-cloud-sdk/install.sh
    
    0 讨论(0)
  • 2020-12-07 14:24

    To launch it on MacOs Sierra, after install gcloud I modified my .bash_profile

    Original lines:

    # The next line updates PATH for the Google Cloud SDK.
    if [ -f '/Users/alejandro/google-cloud-sdk/path.bash.inc' ]; then . '/Users/alejandro/google-cloud-sdk/path.bash.inc'; fi
    
    # The next line enables shell command completion for gcloud.
    if [ -f '/Users/alejandro/google-cloud-sdk/completion.bash.inc' ]; then . '/Users/alejandro/google-cloud-sdk/completion.bash.inc'; fi
    

    updated to:

    # The next line updates PATH for the Google Cloud SDK.
    if [ -f '/Users/alejandro/google-cloud-sdk/path.bash.inc' ]; then source '/Users/alejandro/google-cloud-sdk/path.bash.inc'; fi
    
    # The next line enables shell command completion for gcloud.
    if [ -f '/Users/alejandro/google-cloud-sdk/completion.bash.inc' ]; then source '/Users/alejandro/google-cloud-sdk/completion.bash.inc'; fi
    

    Restart the terminal and all become to work as expected!

    0 讨论(0)
  • 2020-12-07 14:25

    When installing the SDK I used this method:

    curl https://sdk.cloud.google.com | bash
    

    When using this method from the original author make sure you have accepted the security preferences in your mac settings to allow apps downloaded from app store and identified developers.

    0 讨论(0)
  • 2020-12-07 14:25

    If running

    source ~/.bashrc
    

    results in "No such file or directory"

    On windows:

    1. Go to c/Users/
    2. While holding shift, right-click .bashrc file and select "Copy as path"
    3. In bash: source <pasteCopiedPathHere> -> for example: source "C:\Users\John\.bashhrc"
    0 讨论(0)
  • 2020-12-07 14:28

    How to install GCloud and Always Works after Restart On Mac OS HIGH Sierra:

    1. Download install package Here

    2. Achieved file and drop in your folder

    3. Open terminal, go to your folder with file and enter this command:

       ./google-cloud-sdk/install.sh
      
    4. "Modify profile to update your $PATH and enable bash completion?"
      Yes

    5. Enter this path to modify:
      /Users/USERNAME_COMPUTER/.bashrc
    6. After all install, enter this:

        source ~/.bashrc
      
    7. Enter this to check install gcloud:

      gcloud - -version

    8. Open new window terminal cmd+n DONT CLOSE OLD WINDOW and enter in new window gcloud version

      if: «command not found» go to step 9

      else: Congratulations GCloud work in terminal

    9. Return to old window and enter echo $PATH and copy path to GCloud

    10. Open BASH_PROFILE:

      open ~/.bash_profile
      
    11. Enter path to new Bash:

      « export PATH="/Users/USERNAME_COMPUTER/google-cloud-sdk/bin:$PATH" »
      
    12. Return to step 8

    0 讨论(0)
  • 2020-12-07 14:28

    You just have to execute this command as root

    $ curl https://sdk.cloud.google.com | bash
    

    Restart the terminal and that's it. Now all commands should be executed as root

    0 讨论(0)
提交回复
热议问题