sudo apt-get install xclip
Generate ssh key:
| # this script has been tested and worked in a freshly installed Ubuntu 16.04 and 16.10 | |
| # it assumes that you are running airflow in a private netowrk and no need to be worry about outside access | |
| # if that's not the case, the lines for PostgreSQL and Redis in this script need to be updated accordingly | |
| # run as root | |
| sudo su | |
| # initial system updates and installs | |
| apt-get update && apt-get upgrade -y && apt-get autoremove && apt-get autoclean | |
| apt-get -y install build-essential binutils gcc make git htop nethogs tmux |
| # Copy line by line and paste to an interactive shell | |
| # Update system | |
| sudo apt-get update && sudo apt-get dist-upgrade | |
| # Install Java | |
| sudo add-apt-repository ppa:openjdk-r/ppa | |
| sudo apt-get update | |
| sudo apt-get install openjdk-7-jdk |
| # I have followed PyImageSearch tutorial http://www.pyimagesearch.com/2015/07/20/install-opencv-3-0-and-python-3-4-on-ubuntu/ | |
| # Ubuntu upgrade & update current libraries | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| # Install dependancies | |
| sudo apt-get install build-essential cmake git pkg-config | |
| sudo apt-get install libjpeg8-dev libtiff4-dev libjasper-dev libpng12-dev | |
| sudo apt-get install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev |