Reputation: 133
I am trying to upload my newly created project to app engine but receiving "permission denied" when running appcfg.py update .
in my project directory.
Things I have tried:
appcfg.py update **path**
gcloud auth login
and logged into google via Chrome.No idea what else I can do, I'm new to this and this problem is just confusing me further.
Upvotes: 1
Views: 599
Reputation: 47
# python2.7 /usr/local/bin/appcfg.py update app.yaml
This is the call I do having both python2.7 and python3.x on my mac.
Upvotes: 0
Reputation: 915
In my case, I had to change access permission of the appcfg.py
file.
https://en.wikipedia.org/wiki/Chmod read more about chmod
here.
Upvotes: 0
Reputation: 400
I usually receive this error when not specifying python before appcfg.py. For example:
python appcfg.py update ~/mycodeproject/app.yaml
Upvotes: 0