dev_appserver.py実行時にPython 3 and later is not compatible が出る
https://cloud.google.com/sdk/docs/quickstart-debian-ubuntu
Ubuntu14.04の環境で、上記のチュートリアルにしたがってGoogle Cloud SDKのインストールをしました。
目的は、GAEをgoで動かすこと。またその開発をUbuntu14.04上ですることです。
SDKのインストールは特に問題なく進められたのですが、
https://cloud.google.com/appengine/docs/standard/go/quickstart#test_the_application
こちらの手順の
dev_appserver.py app.yaml
をしようとすると、以下のエラーが出てしまい実行できません。
$python -V
Python 2.7.9
$dev_appserver.py app.yaml
ERROR: Python 3 and later is not compatible with the Google Cloud SDK. Please use Python version 2.7.x.
If you have a compatible Python interpreter installed, you can use it by setting
the CLOUDSDK_PYTHON environment variable to point to it.
pythonのデフォルトのバージョンは2.7.9にしたのですが、
別にpython3が入っているために競合しているのかもしれません。
$which python3
/home/ludwig125/.pyenv/shims/python3
エラーの内容にあるとおり、CLOUDSDK_PYTHONをpython2.7にしたのですが、変わりませんでした。
$which python2.7
/usr/local/bin/python2.7
$export CLOUDSDK_PYTHON="/usr/local/bin/python2.7"
↓
これでも同様
ERROR: Python 3 and later is not compatible with the Google Cloud SDK. Please use Python version 2.7.x.
どなたか、解決方法をご教示いただけないでしょうか?