Browsing Category "bash_profile"

Search This Blog

Powered by Blogger.

Pages

Browsing "Older Posts"

Browsing Category "bash_profile"

Mac OS profile not loading in terminal

By TY → Sunday, October 11, 2015


This issue happened for me after installing google cloud engine for kubernetes.
After some search, This have helped me resolved it. The profile was not loaded in the terminal because .bash_profile exist.


  1. Move the following into the end of your "~/.profile"
    # The next line updates PATH for the Google Cloud SDK.
    source '/opt/App/google-cloud-sdk/path.bash.inc'
    
    # The next line enables bash completion for gcloud.
    source '/opt/App/google-cloud-sdk/completion.bash.inc'
    
  2. Rename "~/.bash_profile" as "~/.bash_profile_old"

Reference :
http://stackoverflow.com/questions/11498070/bash-profile-not-loading