env.sh 258 B

123456789101112131415
  1. #!/usr/bin/env bash
  2. set -e
  3. # install dependent packages
  4. echo "Start install dependent packages"
  5. pip install redis
  6. pip install paramiko
  7. pip scp
  8. pip uninstall -y cryptography
  9. pip install cryptography==2.4.2
  10. echo "Successfully installed dependent packages"