@@ -25,17 +25,29 @@ App Engine task attempts.
2525
2626Please refer to [ Setting Up a Python Development Environment] ( https://cloud.google.com/python/setup ) .
2727
28- ## Authentication
28+ ### Authentication
2929
3030To set up authentication, please refer to our
3131[ authentication getting started guide] ( https://cloud.google.com/docs/authentication/getting-started ) .
3232
33+ ### Install Dependencies
34+
35+ To install the dependencies for this sample, use the following command:
36+
37+ ```
38+ pip install -r requirements.txt
39+ ```
40+
41+ This sample uses the common protos in the [ googleapis] ( https://github.com/googleapis/googleapis )
42+ repository. For more info, see
43+ [ Protocol Buffer Basics] ( https://developers.google.com/protocol-buffers/docs/pythontutorial ) .
44+
3345## Creating a queue
3446
3547To create a queue using the Cloud SDK, use the following gcloud command:
3648
3749```
38- gcloud beta tasks queues create-app-engine-queue my-appengine-queue
50+ gcloud tasks queues create my-appengine-queue
3951```
4052
4153Note: A newly created queue will route to the default App Engine service and
@@ -79,14 +91,14 @@ export PROJECT_ID=my-project-id
7991```
8092
8193Then the queue ID, as specified at queue creation time. Queue IDs already
82- created can be listed with ` gcloud beta tasks queues list ` .
94+ created can be listed with ` gcloud tasks queues list ` .
8395
8496```
8597export QUEUE_ID=my-appengine-queue
8698```
8799
88100And finally the location ID, which can be discovered with
89- ` gcloud beta tasks queues describe $QUEUE_ID ` , with the location embedded in
101+ ` gcloud tasks queues describe $QUEUE_ID ` , with the location embedded in
90102the "name" value (for instance, if the name is
91103"projects/my-project/locations/us-central1/queues/my-appengine-queue", then the
92104location is "us-central1").
0 commit comments