Last active
June 14, 2018 15:45
-
-
Save jeanlouisferey/13a3275a8c2a4b4c186fbfb3a6d9df11 to your computer and use it in GitHub Desktop.
How to install Shade, required by Ansible to manage Openstack, on Centos 7.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1- Install some dependencies: | |
yum install epel-release python-devel openssl-devel | |
yum groupinstall "Development Tools" | |
2 - Update all packages | |
yum -y update | |
3 - Install pip | |
yum -y install python-pip | |
4 - Upgrade pip | |
pip install --upgrade pip | |
5 - Install Shade | |
pip install shade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment