5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Google Cloud SDKをインストール(CentOS5 & 6)

Posted at
  • Google Cloud SDKではPython2.7が必要だが
  • CentOS6ではpython2.6がインストールされているので2.7をインストールする必要がある。
  • CentOS5でも同様だが少し追加の設定が必要だった

インストール

python2.7インストール

  • CentOS5,6ではpython2.7が入っていないのでインストールして使えるようにする
yum install zlib-devel openssl-devel bzip2-devel
cd /usr/local/src/
wget https://www.python.org/ftp/python/2.7.11/Python-2.7.11.tgz
tar xvzf Python-2.7.11.tgz
cd Python-2.7.11
./configure --prefix=/usr/local
make
make altinstall
※バージョンを確認する
python2.7 -V

cd /usr/local/bin/
ln -s -i python2.7 python
ln -s -i python2.7-config python-config
※バージョンを確認する
python -V

※yumコマンドに影響が出ていないか念のため確認

gcloudインストール

  • 使いたいユーザになって
curl https://sdk.cloud.google.com | bash
exec -l $SHELL
gcloud --version

Google Cloud SDK 100.0.0

bq 2.0.18
bq-nix 2.0.18
core 2016.03.04
core-nix 2016.02.05
gcloud 
gsutil 4.17
gsutil-nix 4.15

CentOS5では

$ curl https://sdk.cloud.google.com | bash 

Welcome to the Google Cloud SDK!
  File "/home/ユーザ/google-cloud-sdk/bin/bootstrapping/install.py", line 110
    to_install = (override_components if override_components is not None
                                       ^
SyntaxError: invalid syntax

のようなエラー(python2.4を使ってしまいエラー?)なので

which python2
  /usr/bin/python2
cd /usr/bin/
ln -s -i /usr/local/bin/python2.7 python2

後、再度gcloudインストール

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?