Ubuntu packages
Linux -- Posted on Dec. 2, 2017
Ubuntu packages
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 49 50 51 52 53 54 | apt-get update &&
apt-get -y upgrade &&
apt-get -y dist-upgrade &&
apt-get -y autoremove &&
apt-get install -y libzmq3-dev &&
apt-get install -y postgresql-9.6 &&
apt-get install -y python3.6 &&
apt-get install -y python3.6-dev &&
apt-get install -y python3.6-venv &&
apt-get install -y postgresql-9.6-postgis-2.3 &&
apt-get install -y postgresql-contrib-9.6 &&
apt-get install -y postgresql-client-9.6 &&
apt-get install -y python-dev &&
apt-get install -y python3-dev &&
apt-get install -y python &&
apt-get install -y redis-server &&
apt-get install -y virtualenv &&
apt-get install -y python3-venv &&
apt-get install -y python-pip &&
apt-get install -y python3-pip &&
apt-get install -y gummi &&
apt-get install -y texlive-fonts-extra &&
apt-get install -y texmaker &&
apt-get install -y qgis &&
apt-get install -y git &&
apt-get install -y vlc &&
apt-get install -y gpick &&
apt-get install -y gparted &&
apt-get install -y filezilla &&
apt-get install -y vsftpd &&
apt-get install -y pgadmin3 &&
apt-get install -y samba &&
apt-get install -y lm-sensors &&
apt-get install -y nginx &&
apt-get install -y cifs-utils &&
apt-get install -y curl &&
apt-get install -y libcurl3 &&
apt-get install -y ssh &&
apt-get install -y libgdal-dev &&
apt-get install -y dirmngr &&
pip install python-memcached &&
pip install flake8 &&
pip install celery django-celery &&
pip3 install flake8 &&
pip install psycopg2 &&
pip3 install psycopg2 &&
pip install redis &&
pip install django-redis-cache &&
apt-get install -y memcached &&
apt-get install -y libmemcached-tools &&
wget https://bootstrap.pypa.io/get-pip.py &&
sudo python3.6 get-pip.py &&
sudo ln -s /usr/bin/python3.6 /usr/local/bin/python3 &&
sudo ln -s /usr/local/bin/pip /usr/local/bin/pip3
|