9 lines
112 B
Bash
Executable file
9 lines
112 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
VENV=env.venv
|
|
|
|
python -m venv "$VENV"
|
|
|
|
. "$VENV/bin/activate"
|
|
|
|
pip install -U pip ansible~=9.5
|