mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Move contents into new folder structure based on primary technology Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
10 lines
206 B
Bash
10 lines
206 B
Bash
#!/bin/bash
|
|
|
|
# Update package lists
|
|
sudo apt-get update
|
|
|
|
# Install necessary packages
|
|
sudo apt-get -y install python-pip python-dev
|
|
|
|
# Install OpenStack Client (OSC)
|
|
sudo pip install python-openstackclient
|