We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad796a9 commit 0d14f50Copy full SHA for 0d14f50
dev/setup-env.sh
@@ -0,0 +1,10 @@
1
+#!/bin/bash
2
+
3
+/usr/bin/python3.8 -m venv venv
4
+source venv/bin/activate
5
+pip install -U pip
6
+pip install -r requirements.txt
7
+ansible --version
8
+# Install ansible dependencies ...
9
+ansible-galaxy role install -r requirements.yml --force
10
+ansible-galaxy collection install -r requirements.yml --force
requirements.txt
@@ -0,0 +1,9 @@
+ansible==6.0.0
+openstacksdk
+python-openstackclient
+jmespath
+passlib[bcrypt]==1.7.4
+cookiecutter
+selinux # this is a shim to avoid having to use --system-site-packages, you still need sudo yum install libselinux-python3
+netaddr
+matplotlib
0 commit comments