Skip to content

Instantly share code, notes, and snippets.

@tamirko
Last active November 18, 2015 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tamirko/21399ac0af1eae690e91 to your computer and use it in GitHub Desktop.
Save tamirko/21399ac0af1eae690e91 to your computer and use it in GitHub Desktop.
install the Cloudify CLI for SoftLayer
#! /bin/bash
apt-get -y -q update
apt-get install -y -q wget
apt-get install -y -q curl
apt-get install -y -q unzip
apt-get install -y -q python-dev
apt-get install -y -q python-virtualenv
apt-get install -y -q git
apt-get install python-pip
export virtualEnvName=myenv
virtualenv $virtualEnvName
source $virtualEnvName/bin/activate
pip install cloudify==3.2.1
unzip cloudify-softlayer-plugin-1.2.1_Sept1st_2015.zip
cd cloudify-softlayer-plugin-1.2.1
pip install -e .
cd ..
git clone https://github.com/cloudify-cosmo/cloudify-fabric-plugin.git
cd cloudify-fabric-plugin
git checkout tags/1.2.1
pip install -e .
cd ..
pip install softlayer --upgrade
pip list | grep -i "cloudify"
cfy --help
cfy --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment