2015年4月18日

GAE SDK for Python 教學 (1) - 安裝 GAE SDK ( Install GAE SDK for Python tutorial )

本系列文章將會是 Webapp2 教學的基礎,主要介紹如何在 Arch Linux 機器上安裝及使用 GAE SDK for Python ( 不透過 Google 提供的圖形化工具 ),加上官方的說明仍然有些不足,所以在這邊順便補充。( 其他 Webapp2 相關教學可以參考本篇整理 )



前置作業:
稍後的安裝、使用步驟需要用到 wget ( 或 curl )、unzip、python2,安裝這些軟體指令如下:
pacman -S wget unzip python2


下載 GAE SDK for Python:
首先到 Google App Engine 網頁下載,


下載 Linux / Other Platforms 版本,指令:
wget https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.18.zip


安裝 GAE SDK for Python:
解壓縮 GAE SDK,
unzip google_appengine_1.9.18.zip


檢查 Python 版本:
因 GAE SDK 是使用 Python 2.7 版本,所以先行檢查一下開發環境的 Python 版本,若機器沒有安裝 Python 2.7 請參考前置作業的步驟進行安裝。
/usr/bin/env python -V
本篇內容至此,接著請繼續閱讀 GAE SDK for Python 教學 (2)


Environment :
  ・ Arch Linux
  ・ Python 2.7

Reference :
  ・ Webapp2 official site
  ・ Google App Engine SDK



熱門文章