How do I fix the “Google Cloud SDK component manager is disabled for this installation” error?LastPass Sesame (Ubuntu/Debian) does not work after update to Wily Werewolf 15.10Custom .deb does not install all filesGoogle Cloud SDK InstalationTrying to install glee-dev ubuntu 19.04Unable to use sudo apt-get <command name> in ubuntu 18.04can't install mysql 8 on ubuntu 19.04
Compress .hex file for micro-controller
How to write Gaussian reduction?
How to avoid that customers come to local shop to get advice and then buy online?
Options for passes to national parks in Arizona/Utah for 5 people travelling in one car
What is the white square near the viewfinder of the Fujica GW690?
Calculating the required motor for a mobility scooter
What exactly is meant by "partial function" in functional programming?
Subassembly identification
Make a list of Fibonacci numbers less than 1000, whose index is in the form 3m+1. Verify that all these numbers are odd
How would a race of humanoids with tails design [vehicle] seats?
Convexity of a QP
Is rent considered a debt?
Modeling the Round (Nearest Integer) function
Replacing each letter with the letter that is in the corresponding position from the end of the English alphabet
Visualize a large int
How do I redirect a subdomain with a wildcard?
Are commoners actually this squishy?
What do you do when brand new pads are rubbing on new rotor? It smokes and smells so bad and it seems like it is going to catch on fire
Implementation of A* algorithm in C++
When and why did the House rules change to permit an inquiry without a vote?
In this scene from the novel, 'The Martian', by Andy Weir, how does Mark Watney store hydrogen made from water in the tank?
What does "he was equally game to slip into bit parts" mean?
Is the EU Settlement Scheme legal?
Can Chill Touch prevent Regeneration?
How do I fix the “Google Cloud SDK component manager is disabled for this installation” error?
LastPass Sesame (Ubuntu/Debian) does not work after update to Wily Werewolf 15.10Custom .deb does not install all filesGoogle Cloud SDK InstalationTrying to install glee-dev ubuntu 19.04Unable to use sudo apt-get <command name> in ubuntu 18.04can't install mysql 8 on ubuntu 19.04
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I just tried to install the Google Cloud SDK on my Ubuntu 19.04 following these instructions.
Specifically I did:
# Create environment variable for correct distribution
CLOUD_SDK_REPO="cloud-sdk-$(grep VERSION_CODENAME /etc/os-release | cut -d '=' -f 2)"
# Add the Cloud SDK distribution URI as a package source
echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
# Import the Google Cloud Platform public key
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
# Update the package list and install the Cloud SDK
sudo apt-get update && sudo apt-get install google-cloud-sdk
And then run gcloud init
and followed the process there.
When I now do gcloud components update
I get the following error:
ERROR: (gcloud.components.update)
You cannot perform this action because the Cloud SDK component manager
is disabled for this installation.
Any ideas on how this can be fixed?
software-installation 19.04 cloud google sdk
add a comment
|
I just tried to install the Google Cloud SDK on my Ubuntu 19.04 following these instructions.
Specifically I did:
# Create environment variable for correct distribution
CLOUD_SDK_REPO="cloud-sdk-$(grep VERSION_CODENAME /etc/os-release | cut -d '=' -f 2)"
# Add the Cloud SDK distribution URI as a package source
echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
# Import the Google Cloud Platform public key
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
# Update the package list and install the Cloud SDK
sudo apt-get update && sudo apt-get install google-cloud-sdk
And then run gcloud init
and followed the process there.
When I now do gcloud components update
I get the following error:
ERROR: (gcloud.components.update)
You cannot perform this action because the Cloud SDK component manager
is disabled for this installation.
Any ideas on how this can be fixed?
software-installation 19.04 cloud google sdk
add a comment
|
I just tried to install the Google Cloud SDK on my Ubuntu 19.04 following these instructions.
Specifically I did:
# Create environment variable for correct distribution
CLOUD_SDK_REPO="cloud-sdk-$(grep VERSION_CODENAME /etc/os-release | cut -d '=' -f 2)"
# Add the Cloud SDK distribution URI as a package source
echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
# Import the Google Cloud Platform public key
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
# Update the package list and install the Cloud SDK
sudo apt-get update && sudo apt-get install google-cloud-sdk
And then run gcloud init
and followed the process there.
When I now do gcloud components update
I get the following error:
ERROR: (gcloud.components.update)
You cannot perform this action because the Cloud SDK component manager
is disabled for this installation.
Any ideas on how this can be fixed?
software-installation 19.04 cloud google sdk
I just tried to install the Google Cloud SDK on my Ubuntu 19.04 following these instructions.
Specifically I did:
# Create environment variable for correct distribution
CLOUD_SDK_REPO="cloud-sdk-$(grep VERSION_CODENAME /etc/os-release | cut -d '=' -f 2)"
# Add the Cloud SDK distribution URI as a package source
echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
# Import the Google Cloud Platform public key
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
# Update the package list and install the Cloud SDK
sudo apt-get update && sudo apt-get install google-cloud-sdk
And then run gcloud init
and followed the process there.
When I now do gcloud components update
I get the following error:
ERROR: (gcloud.components.update)
You cannot perform this action because the Cloud SDK component manager
is disabled for this installation.
Any ideas on how this can be fixed?
software-installation 19.04 cloud google sdk
software-installation 19.04 cloud google sdk
edited May 28 at 21:39
Community♦
1
1
asked May 28 at 15:41
SeverinSeverin
5512 gold badges8 silver badges25 bronze badges
5512 gold badges8 silver badges25 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
As the issue was discussed here, try installing google-cloud-sdk
through anything other than apt
.
1. Remove google-cloud-sdk
first: sudo apt purge autoremove google-cloud-sdk
2. Then download the correct .tar.gz
for your system from https://cloud.google.com/sdk/docs/quickstart-linux and extract it tar -xzf google-cloud-sdk-*
to a directory and install it running sudo ./google-cloud-sdk/install.sh
.
Restart the terminal session. gcloud components update
should work now.
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1146879%2fhow-do-i-fix-the-google-cloud-sdk-component-manager-is-disabled-for-this-instal%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As the issue was discussed here, try installing google-cloud-sdk
through anything other than apt
.
1. Remove google-cloud-sdk
first: sudo apt purge autoremove google-cloud-sdk
2. Then download the correct .tar.gz
for your system from https://cloud.google.com/sdk/docs/quickstart-linux and extract it tar -xzf google-cloud-sdk-*
to a directory and install it running sudo ./google-cloud-sdk/install.sh
.
Restart the terminal session. gcloud components update
should work now.
add a comment
|
As the issue was discussed here, try installing google-cloud-sdk
through anything other than apt
.
1. Remove google-cloud-sdk
first: sudo apt purge autoremove google-cloud-sdk
2. Then download the correct .tar.gz
for your system from https://cloud.google.com/sdk/docs/quickstart-linux and extract it tar -xzf google-cloud-sdk-*
to a directory and install it running sudo ./google-cloud-sdk/install.sh
.
Restart the terminal session. gcloud components update
should work now.
add a comment
|
As the issue was discussed here, try installing google-cloud-sdk
through anything other than apt
.
1. Remove google-cloud-sdk
first: sudo apt purge autoremove google-cloud-sdk
2. Then download the correct .tar.gz
for your system from https://cloud.google.com/sdk/docs/quickstart-linux and extract it tar -xzf google-cloud-sdk-*
to a directory and install it running sudo ./google-cloud-sdk/install.sh
.
Restart the terminal session. gcloud components update
should work now.
As the issue was discussed here, try installing google-cloud-sdk
through anything other than apt
.
1. Remove google-cloud-sdk
first: sudo apt purge autoremove google-cloud-sdk
2. Then download the correct .tar.gz
for your system from https://cloud.google.com/sdk/docs/quickstart-linux and extract it tar -xzf google-cloud-sdk-*
to a directory and install it running sudo ./google-cloud-sdk/install.sh
.
Restart the terminal session. gcloud components update
should work now.
edited May 28 at 22:12
answered May 28 at 22:06
CuldesacCuldesac
636 bronze badges
636 bronze badges
add a comment
|
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1146879%2fhow-do-i-fix-the-google-cloud-sdk-component-manager-is-disabled-for-this-instal%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown