if system_type == 'rpm':
install_cmd = ['sudo', 'yum', '-y', 'install']
- cbt_depends = ['python-yaml', 'python-lxml', 'librbd-devel', 'pdsh', 'collectl']
+ cbt_depends = ['python36-PyYAML', 'python36-lxml', 'librbd-devel', 'pdsh', 'collectl']
else:
install_cmd = ['sudo', 'apt-get', '-y', '--force-yes', 'install']
- cbt_depends = ['python-yaml', 'python-lxml', 'librbd-dev', 'collectl']
+ cbt_depends = ['python3-yaml', 'python3-lxml', 'librbd-dev', 'collectl']
self.first_mon.run(args=install_cmd + cbt_depends)
benchmark_type = self.cbt_config.get('benchmarks').keys()[0]