mirror of
https://github.com/jcwimer/kubernetes-ansible
synced 2026-03-25 00:54:44 +00:00
10 lines
179 B
Bash
10 lines
179 B
Bash
#!/bin/bash
|
|
apt-get update -qq
|
|
apt-get install -y -qq \
|
|
python-dev \
|
|
python-pip \
|
|
python-setuptools
|
|
|
|
pip install --upgrade setuptools
|
|
pip install ez_setup
|
|
pip install pipenv |