2017-01-03 13 views
-2

CentOS 7インスタンスにawscliツールをインストールしようとしましたが、インストールスクリプトに不正なインストールディレクトリを与えました。これで、ホスト上のPythonのセットアップが壊れているように見えます。AWS CLIのインストールに間違った引数があります

これは私が走ったとその後の出力コマンドです。(例えば)のyumを実行しているとき

[[email protected] awscli-bundle]# ./install -i /usr/bin 
Running cmd: /bin/python virtualenv.py --python /bin/python /usr/bin 
Running cmd: /usr/bin/bin/pip install --no-index --find-links file:///home/rhaskins/awscli-bundle/packages awscli-1.11.30.tar.gz 
You can now run: /usr/bin/bin/aws --version 

そして今、私が得る:

[[email protected] awscli-bundle]# yum 
There was a problem importing one of the Python modules 
required to run yum. The error leading to this problem was: 

    No module named yum 

Please install a package which provides this module, or 
verify that the module is installed correctly. 

It's possible that the above module doesn't match the 
current version of Python, which is: 
2.7.5 (default, Nov 6 2016, 00:28:07) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] 

If you cannot solve this problem yourself, please go to 
the yum faq at: 
    http://yum.baseurl.org/wiki/Faq 

私はこれを元に戻すにはどうすればよいですか?

+0

あなたはペットと牛の比喩をよく知っていて、単にこのインスタンスを破棄して、最初から新しいインスタンスを開始することができます。また、rootとしてログインするのはベストプラクティスでもありません。 – jarmod

答えて

-1

@jarmod、私は新しいAWSインスタンスを作成することが容易であることを認識しています。私がやったことを元に戻す簡単な方法があるかどうかを知ろうとしていました。結局、AWS CLIダウンロードパッケージに付属のバンドルインストーラではなく、直接pip installメソッドを使用して新しいインスタンスを構築し、AWS CLIをインストールしました。

関連する問題