mirror of
https://github.com/jcwimer/startup-infrastructure
synced 2026-03-25 06:34:43 +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 |