Simple Chef recipe for installing Django
# Create the Cookbook
mkdir -p ~/django_guide/cookbooks/django/recipes
# Create the Recipe to install Django
cat > ~/django_guide/cookbooks/django/recipes/default.rb
python_pip 'django' do
action :install
end
^D
#NOTE: ^D stands for the key sequence Ctrl+D