New Way To Install OpenStack Client
A while back I was provided these instructions for getting an OpenStack Python client running in a virtual environment (venv) in Python 3. They have proven very useful to me (no needing to read the whole image into memory first), so I am posting them here for posterity. Forgive me if I have posted these before, still trying to catch up from my time slacking off.
Using Ubuntu 20.04
- apt install python3-pip
- apt install python3.8-venv
- python3 -m venv .venv
- source .venv/bin/activate
- pip install wheel
- pip install -U pip
- pip install python-openstackclient
And then you can source your openrc file and Bob is, indeed, your uncle.