Hello,
I seem to have some issues with the data access. Maybe you could clarify them for me.
I am able to complete this part:
curl -O https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-cli-387.0.0-linux-x86_64.tar.gz
tar -xf google-cloud-cli-387.0.0-linux-x86_64.tar.gz
exec bash
./google-cloud-sdk/install.sh
gcloud init
earthengine authenticate
however, when I try any of these:
gcloud storage mb -l us-central1 $(python -c "from dataops import EE_BUCKET; print(EE_BUCKET)")
gcloud storage mb -l us-central1 $(python -c "from dataops import NPY_BUCKET; print(NPY_BUCKET)")
gcloud storage mb -l us-central1 $(python -c "from dataops import TAR_BUCKET; print(TAR_BUCKET)")
I get the following error:
~/presto$ gcloud storage mb -l us-central1 $(python -c "from dataops import EE_BUCKET; print(EE_BUCKET)")
Traceback (most recent call last):
File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'dataops'
ERROR: (gcloud) Invalid choice: 'storage'.
Maybe you meant:
gcloud alpha storage
gcloud composer environments
To search the help text of gcloud commands, run:
gcloud help -- SEARCH_TERMS
What exactly am I doing wrong?
Thanks!
Hello,
I seem to have some issues with the data access. Maybe you could clarify them for me.
I am able to complete this part:
however, when I try any of these:
I get the following error:
What exactly am I doing wrong?
Thanks!