mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
19 lines
265 B
Bash
Executable File
19 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
|