Xhulia Jasimi
Xhulia Jasimi

Reputation: 1

Google App Engine Deploy Error When Deploying Python

Currently I am trying to deploy a server for Mit App Inventor, when I browser the project it looks just fine and the local host works as well. The problem is that when I try to deploy it I get an error. I am using python 2.7.8. By the way I am doing this project from my other gmail account. I have tried and retried a thousand times, but with no result. Can you please help me? This is the main error

It says that that's an error when reading a line.

Upvotes: 0

Views: 69

Answers (1)

brian
brian

Reputation: 812

From what I can see you're still using the Google App Engine Launcher which I think was deprecated and is no longer supported. The point is that it still uses appcfg.py to deploy and from the error message you get it also tries to use login/password for authentication which is also no longer supported.

Today you should use the Cloud SDK and the gcloud command line to manage/deploy your app. I'm confident that will solve your issue.

Upvotes: 1

Related Questions