Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

Commit

Permalink
[#27] - Automatically install pip
Browse files Browse the repository at this point in the history
#27

Allow us to automatically install pip using the `-y` flag
  • Loading branch information
ZacBlanco committed Aug 17, 2016
1 parent 9801a61 commit f76386e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/scripts/master.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def install(self, env):
Execute('chown -R ' + params.demo_user + ':' + params.demo_group + ' ' + demo_logging_dir)

# Ensure pip is instaled
Execute('sudo yum install python-pip')
Execute('sudo yum -y install python-pip')
Execute('pip install -r ' + '/'.join([params.demo_bin_dir, 'requirements.txt']))
Execute('python ' + params.demo_bin_dir + '/service.py INSTALL')

Expand Down

0 comments on commit f76386e

Please sign in to comment.