- #!/usr/bin/env bash
- set -e
- # install dependent packages
- echo "Start install dependent packages"
- pip install redis
- pip install paramiko
- pip scp
- pip uninstall -y cryptography
- pip install cryptography==2.4.2
- echo "Successfully installed dependent packages"
|