File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,14 @@ bootstrap-docker-fedora-local:
4343bootstrap-docker-ubuntu-local :
4444 cd config/vagrant/scripts && ./bootstrap-docker-ubuntu.sh
4545
46+ # Bootstrap Python (Ubuntu)
47+ bootstrap-python-ubuntu-local :
48+ cd config/vagrant/scripts && ./bootstrap-python-ubuntu.sh
49+
50+ # Bootstrap Python (Fedora)
51+ bootstrap-python-fedora-local :
52+ cd config/vagrant/scripts && ./bootstrap-python-fedora.sh
53+
4654# Bootstrap Golang (Fedora)
4755bootstrap-golang-fedora-local :
4856 cd config/vagrant/scripts && ./bootstrap-golang-fedora.sh
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ sudo dnf update -y
3+ sudo dnf install -y python3 python3-pip
4+ sudo pip3 install --upgrade pip
5+
6+ # Install the j2cli package for use with the multus-cni repo
7+ sudo pip3 install j2cli
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ sudo apt-get update -y
3+ sudo apt-get install -y python3 python3-pip
4+ sudo pip3 install --upgrade pip
5+
6+ # Install the j2cli package for use with the multus-cni repo
7+ sudo pip3 install j2cli
You can’t perform that action at this time.
0 commit comments