Cloud:Storage:CreateCredentials: Difference between revisions

From ZeroOne Tech Public Wiki
Tag: Reverted
Tag: Reverted
Line 4: Line 4:


<code>
<code>
apt install python3-pip python3-venv \n
apt install python3-pip python3-venv
mkdir ~/openstack \n
 
python3 -m venv ~/openstack \n
mkdir ~/openstack
source ~/openstack/bin/activate \n
 
pip install python-openstackclient \n
python3 -m venv ~/openstack
 
source ~/openstack/bin/activate
 
pip install python-openstackclient
 
</code>
</code>

Revision as of 04:33, 5 May 2024

Linux

  1. Ubuntu 24.04

apt install python3-pip python3-venv

mkdir ~/openstack

python3 -m venv ~/openstack

source ~/openstack/bin/activate

pip install python-openstackclient