Thursday, May 2, 2024
25
rated 0 times [  25] [ 0]  / answers: 1 / hits: 36452  / 1 Year ago, sun, january 22, 2023, 12:13:41

How can I install Google's appengine in Ubuntu 12.04?



Is there an easy method to install it with all dependencies? Is there a PPA?


More From » software-installation

 Answers
3

Install Google App Engine



Extract the zipped file either use the context menu to extract files into a folder.
After you finish extracting, you will get a folder google_appengine which has all the necessary files to develop application. To complete the installation and to able to run Google App Engine, we must specify its path definition. You can specify the PATH definition in the terminal only using



export PATH=$PATH:/home/your_user_name/Desktop/google_appengine/


But path specified using export command is valid as long as you are inside the current terminal window. That means as soon as you close the window, the path specified becomes invalid. To specify the path in the system, you have to edit



/home/your_user_name/.profile


and specify the path there.



All set & done, now you have the shiny Google App Engine up & running its time to do the real job. Let us make an ‘Hello World’ application for Google App Engine, using you own Linux Box – excited ? To start using app engine, you have to register an application at



http://appspot.com



That requires your usual Google Account’s credentials and the environment is ready to be used instantly.



this tutorial describes how to develop and deploy a simple Python 2.7 project with Google App Engine.



https://developers.google.com/appengine/docs/python/gettingstartedpython27/


[#39197] Monday, January 23, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
hentor

Total Points: 482
Total Questions: 104
Total Answers: 111

Location: South Korea
Member since Sun, Dec 25, 2022
1 Year ago
;