jb2003
jb2003

Reputation: 133

Cannot upload project - appcfg.py permission denied

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:

No idea what else I can do, I'm new to this and this problem is just confusing me further.

Upvotes: 1

Views: 599

Answers (4)

Loreb
Loreb

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

Luka Krajnc
Luka Krajnc

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

SmittySmee
SmittySmee

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

jb2003
jb2003

Reputation: 133

I used gcloud app deploy instead and it worked.

Upvotes: 1

Related Questions