Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CentOS6で python の argparse パッケージを使用しています。以下のコマンドでインストールしました。
# yum install python-argparse
ただし、RHEL5 および 6ではパッケージが見つかりませんでした。それはどこにある?どうすれば argparse を取得できますか?
easy_installまたはpipを介して python パッケージをインストールしてみてください:
# easy_install argparse # pip install argparse
パッケージマネージャーからeasy_installまたはpipをインストールできます。