1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
#!/usr/bin/env bash
export DEBIAN_FRONTEND=noninteractive
# Update sources
sudo apt-get update -y
# Git
sudo apt-get install git
# Python
sudo apt-get install -y python-pip python-dev build-essential
# PyYaml
sudo apt-get update
sudo apt-get install python-yaml
# Future
sudo apt-get update
pip install future
# Scipy & Numpy
sudo apt-get update
sudo apt-get install python-numpy python-scipy
# matplotlib
sudo apt-get update
sudo apt-get install python-matplotlib
# Mock
sudo apt-get update
pip install mock
# pytest
sudo apt-get update
pip install -U pytest
# attrs
sudo apt-get update
pip install attrs
# AWS Cli
sudo apt-get update
pip install awscli
# Vim
sudo apt-get install vim -y
|