mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
28 lines
339 B
Bash
28 lines
339 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# start by removing pycrypto and cryptography
|
||
|
|
||
|
pip uninstall -y cryptography
|
||
|
pip uninstall -y pycrypto
|
||
|
|
||
|
./runme.sh
|
||
|
|
||
|
# now just pycrypto
|
||
|
pip install --user pycrypto
|
||
|
|
||
|
./runme.sh
|
||
|
|
||
|
|
||
|
# now just cryptography
|
||
|
|
||
|
pip uninstall -y pycrypto
|
||
|
pip install --user cryptography
|
||
|
|
||
|
./runme.sh
|
||
|
|
||
|
# now both
|
||
|
|
||
|
pip install --user pycrypto
|
||
|
|
||
|
./runme.sh
|