mirror of
https://github.com/docker/compose.git
synced 2026-06-25 10:38:23 +00:00
18 lines
265 B
Bash
Executable file
18 lines
265 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
python_version() {
|
|
python -V 2>&1
|
|
}
|
|
|
|
openssl_version() {
|
|
python -c "import ssl; print ssl.OPENSSL_VERSION"
|
|
}
|
|
|
|
echo "*** Using $(python_version)"
|
|
echo "*** Using $(openssl_version)"
|
|
|
|
if !(which virtualenv); then
|
|
pip install virtualenv
|
|
fi
|