Google App Engine appcfg.py shows the help message for every command

后端 未结 2 1815
慢半拍i
慢半拍i 2021-02-09 10:12

I have GWT app, which is deployed on GAE (Java). I\'m trying to download data from App Engine datastore using appcfg.py . I did all the setup according to http://ikaisays.com/20

2条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-09 10:40

    The right way is to change the environment variables on Windows 7:

    1. Go to System Properties
    2. Go to Advance System Settings
    3. Click on Environment Variables
    4. Append to Path variable the values C:\Python27\
    5. Click Ok and restart your computer. (Yes, it is needed.)

    Another way is to:

    1. Open command Prompt
    2. Locate your python.exe file. For example:

      C:\Python27>_

    3. Then, run a python command that looks like this.

      python download_app -A -V

    Where is equal to C:\Program Files\Google\google_appengine\appcfg.py. (Depending on your file location)

    Don't forget to put quotes before and after

提交回复
热议问题