Showing posts with label Raspberry Pi. Show all posts
Showing posts with label Raspberry Pi. Show all posts

Monday, December 19, 2022

Setup I2C LCD on Raspberry pi


I2C (inter-integrated circuit) uses two wires to send and receive data and two wires to Vcc and ground.

- install I2C-tools: sudo apt-get install i2c-tools.

- install SMBUS: sudo apt-get install python-smbus.

- reboot.

- connect the I2C LCD to Raspi

- in terminal: i2cdetect -y 1 . This will show a table of addresses for each I2C device connected to Pi.


- put the I2C address of your LCD in line 22 of the library code. For example, my I2C address is 21, so I’ll change line 22 to ADDRESS = 0x3f.

- in terminal: nano I2C_LCD_driver.py

# -*- coding: utf-8 -*-
# Original code found at:
# https://gist.github.com/DenisFromHR/cc863375a6e19dce359d
"""
Compiled, mashed and generally mutilated 2014-2015 by Denis Pleic
Made available under GNU GENERAL PUBLIC LICENSE
# Modified Python I2C library for Raspberry Pi
# as found on http://www.recantha.co.uk/blog/?p=4849
# Joined existing 'i2c_lib.py' and 'lcddriver.py' into a single library
# added bits and pieces from various sources
# By DenisFromHR (Denis Pleic)
# 2015-02-10, ver 0.1
"""
# i2c bus (0 -- original Pi, 1 -- Rev 2 Pi)
I2CBUS = 1
# LCD Address
ADDRESS = 0x3f
import smbus
from time import sleep
class i2c_device:
   def __init__(self, addr, port=I2CBUS):
      self.addr = addr
      self.bus = smbus.SMBus(port)
# Write a single command
   def write_cmd(self, cmd):
      self.bus.write_byte(self.addr, cmd)
      sleep(0.0001)
# Write a command and argument
   def write_cmd_arg(self, cmd, data):
      self.bus.write_byte_data(self.addr, cmd, data)
      sleep(0.0001)
# Write a block of data
   def write_block_data(self, cmd, data):
      self.bus.write_block_data(self.addr, cmd, data)
      sleep(0.0001)
# Read a single byte
   def read(self):
      return self.bus.read_byte(self.addr)
# Read
   def read_data(self, cmd):
      return self.bus.read_byte_data(self.addr, cmd)
# Read a block of data
   def read_block_data(self, cmd):
      return self.bus.read_block_data(self.addr, cmd)

# commands
LCD_CLEARDISPLAY = 0x01
LCD_RETURNHOME = 0x02
LCD_ENTRYMODESET = 0x04
LCD_DISPLAYCONTROL = 0x08
LCD_CURSORSHIFT = 0x10
LCD_FUNCTIONSET = 0x20
LCD_SETCGRAMADDR = 0x40
LCD_SETDDRAMADDR = 0x80
# flags for display entry mode
LCD_ENTRYRIGHT = 0x00
LCD_ENTRYLEFT = 0x02
LCD_ENTRYSHIFTINCREMENT = 0x01
LCD_ENTRYSHIFTDECREMENT = 0x00
# flags for display on/off control
LCD_DISPLAYON = 0x04
LCD_DISPLAYOFF = 0x00
LCD_CURSORON = 0x02
LCD_CURSOROFF = 0x00
LCD_BLINKON = 0x01
LCD_BLINKOFF = 0x00
# flags for display/cursor shift
LCD_DISPLAYMOVE = 0x08
LCD_CURSORMOVE = 0x00
LCD_MOVERIGHT = 0x04
LCD_MOVELEFT = 0x00
# flags for function set
LCD_8BITMODE = 0x10
LCD_4BITMODE = 0x00
LCD_2LINE = 0x08
LCD_1LINE = 0x00
LCD_5x10DOTS = 0x04
LCD_5x8DOTS = 0x00
# flags for backlight control
LCD_BACKLIGHT = 0x08
LCD_NOBACKLIGHT = 0x00
En = 0b00000100 # Enable bit
Rw = 0b00000010 # Read/Write bit
Rs = 0b00000001 # Register select bit
class lcd:
   #initializes objects and lcd
   def __init__(self):
      self.lcd_device = i2c_device(ADDRESS)
      self.lcd_write(0x03)
      self.lcd_write(0x03)
      self.lcd_write(0x03)
      self.lcd_write(0x02)
      self.lcd_write(LCD_FUNCTIONSET | LCD_2LINE | LCD_5x8DOTS | LCD_4BITMODE)
      self.lcd_write(LCD_DISPLAYCONTROL | LCD_DISPLAYON)
      self.lcd_write(LCD_CLEARDISPLAY)
      self.lcd_write(LCD_ENTRYMODESET | LCD_ENTRYLEFT)
      sleep(0.2)

   # clocks EN to latch command
   def lcd_strobe(self, data):
      self.lcd_device.write_cmd(data | En | LCD_BACKLIGHT)
      sleep(.0005)
      self.lcd_device.write_cmd(((data & ~En) | LCD_BACKLIGHT))
      sleep(.0001)
   def lcd_write_four_bits(self, data):
      self.lcd_device.write_cmd(data | LCD_BACKLIGHT)
      self.lcd_strobe(data)
   # write a command to lcd
   def lcd_write(self, cmd, mode=0):
      self.lcd_write_four_bits(mode | (cmd & 0xF0))
      self.lcd_write_four_bits(mode | ((cmd << 4) & 0xF0))
   # write a character to lcd (or character rom) 0x09: backlight | RS=DR<
   # works!
   def lcd_write_char(self, charvalue, mode=1):
      self.lcd_write_four_bits(mode | (charvalue & 0xF0))
      self.lcd_write_four_bits(mode | ((charvalue << 4) & 0xF0))
  
   # put string function with optional char positioning
   def lcd_display_string(self, string, line=1, pos=0):
    if line == 1:
      pos_new = pos
    elif line == 2:
      pos_new = 0x40 + pos
    elif line == 3:
      pos_new = 0x14 + pos
    elif line == 4:
      pos_new = 0x54 + pos
    self.lcd_write(0x80 + pos_new)
    for char in string:
      self.lcd_write(ord(char), Rs)
   # clear lcd and set to home
   def lcd_clear(self):
      self.lcd_write(LCD_CLEARDISPLAY)
      self.lcd_write(LCD_RETURNHOME)
   # define backlight on/off (lcd.backlight(1); off= lcd.backlight(0)
   def backlight(self, state): # for state, 1 = on, 0 = off
      if state == 1:
         self.lcd_device.write_cmd(LCD_BACKLIGHT)
      elif state == 0:
         self.lcd_device.write_cmd(LCD_NOBACKLIGHT)
   # add custom characters (0 - 7)
   def lcd_load_custom_chars(self, fontdata):
      self.lcd_write(0x40);
      for char in fontdata:
         for line in char:
            self.lcd_write_char(line)

- Now, we can test it with hello world, in terminal: nano test.py

import I2C_LCD_driver
mylcd = I2C_LCD_driver.lcd()
mylcd.lcd_display_string("Hello world", 1)

- make sure, you have python installed and between library and python files in one directory.

- run it in terminal: python test.py


Thursday, December 15, 2022

Solve error shaka player or DRM or Widevine at Chromium in Raspberry pi

 If you have ever tried to load streaming live tv (indihome tv) or Netflix, Amazon Prime, HBO, Spotify, or the many other streaming services on your Raspberry Pi, you will find that they fail to function. Such as shaka player not support .....

This is because the Raspberry Pi does not come with the Widevine DRM software installed by default.

So you must update first Raspi, and install libwidevinecdm0

pi@pi:~ $ sudo apt update

............

pi@pi:~ $ sudo apt full-upgrade

............

pi@pi:~ $ sudo apt install libwidevinecdm0

Reading package lists... Done

Building dependency tree       

Reading state information... Done

The following packages were automatically installed and are no longer required:

  lxplug-volume python-colorzero

Use 'sudo apt autoremove' to remove them.

The following NEW packages will be installed:

  libwidevinecdm0

0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.

Need to get 5,990 kB of archives.

After this operation, 8,901 kB of additional disk space will be used.

Get:1 http://archive.raspberrypi.org/debian buster/main armhf libwidevinecdm0 armhf 4.10.2252.0-1 [5,990 kB]

Fetched 5,990 kB in 37s (162 kB/s)                                             

Selecting previously unselected package libwidevinecdm0.

(Reading database ... 104862 files and directories currently installed.)

Preparing to unpack .../libwidevinecdm0_4.10.2252.0-1_armhf.deb ...

Unpacking libwidevinecdm0 (4.10.2252.0-1) ...

Setting up libwidevinecdm0 (4.10.2252.0-1) ...

pi@pi:~ $ 



How to check the free space of SD card in Raspberry Pi

 pi@pi:~ $ df -h

Filesystem      Size  Used Avail Use% Mounted on

/dev/root       7.0G  5.9G  773M  89% /

devtmpfs        406M     0  406M   0% /dev

tmpfs           438M     0  438M   0% /dev/shm

tmpfs           438M   45M  394M  11% /run

tmpfs           5.0M  4.0K  5.0M   1% /run/lock

tmpfs           438M     0  438M   0% /sys/fs/cgroup

/dev/mmcblk0p1  253M   28M  226M  11% /boot

tmpfs            88M     0   88M   0% /run/user/1000

/dev/sda1        15G   15G  373M  98% /media/pi/3633-6436



Sunday, August 28, 2022

How To Make Raspberry as Hotspot or Sink Controller

Install first for hostapd, dnsmasq with apt-get install

 please make prepare about several file for editing:

root@pi:/home/pi# nano /etc/dnsmasq.conf

keep it blank

root@pi:/home/pi# nano /etc/hostapd/hostapd.conf

country_code=ID
interface=wlan0
driver=nl80211
bridge=br0
#RADIUS
macaddr_acl=0
eap_server=0
own_ip_addr=192.168.2.1
radius_client_addr=192.168.2.2
auth_server_addr=192.168.2.1
auth_server_port=1812
auth_server_shared_secret=10041987nm
#hs20=1
hw_mode=g
channel=6
ieee8021x=1
wmm_enabled=1
ht_capab=[HT40][SHORT-GI-20][DSSS_CCK-40]
ignore_broadcast_ssid=0
ssid=iCAL-Hotspot
auth_algs=1
#if you want to make password, uncomment below
#wpa=2
#wpa_key_mgmt=WPA-PSK
#rsn_pairwise=CCMP
#wpa_passphrase=haikalmiska

root@pi:/home/pi# nano /etc/dhcpcd.conf

# A sample configuration for dhcpcd.
# See dhcpcd.conf(5) for details.

# Allow users of this group to interact with dhcpcd via the control socket.
#controlgroup wheel

# Inform the DHCP server of our hostname for DDNS.
hostname

# Use the hardware address of the interface for the Client ID.
clientid
# or
# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
# Some non-RFC compliant DHCP servers do not reply with this set.
# In this case, comment out duid and enable clientid above.
#duid

# Persist interface configuration when dhcpcd exits.
persistent

# Rapid commit support.
# Safe to enable by default because it requires the equivalent option set
# on the server to actually work.
option rapid_commit

# A list of options to request from the DHCP server.
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
# Respect the network MTU. This is applied to DHCP routes.
option interface_mtu

# Most distributions have NTP support.
#option ntp_servers

# A ServerID is required by RFC2131.
require dhcp_server_identifier
# Rapid commit support.
# Safe to enable by default because it requires the equivalent option set
# on the server to actually work.
option rapid_commit

# A list of options to request from the DHCP server.
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
# Respect the network MTU. This is applied to DHCP routes.
option interface_mtu

# Most distributions have NTP support.
#option ntp_servers

# A ServerID is required by RFC2131.
require dhcp_server_identifier

# Generate SLAAC address using the Hardware Address of the interface
#slaac hwaddr
# OR generate Stable Private IPv6 Addresses based from the DUID
slaac private

# Example static IP configuration:

interface eth0
inform 192.168.2.2/24

interface wlan0
inform 192.168.2.3/24

#denyinterfaces eth0 wlan0


root@pi:/home/pi# nano /etc/network/interfaces

# interfaces(5) file used by ifup(8) and ifdown(8)

# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d

# if there no an action, uncomment line below as trigger to IP Address
#auto br0
#auto eth0
#iface br0 inet static
#address 192.168.2.2/24
#gateway 192.168.2.1
#bridge_ports eth0 wlan0

__________________________________________________

root@pi:/home/pi# systemctl daemon-reload

root@pi:/home/pi# service networking restart

root@pi:/home/pi# service dhcpcd restart

root@pi:/home/pi# service hostapd start

root@pi:/home/pi# service dnsmasq start

any error have resolved with see the comments of error!


if you want to reset this hotspot to wifi client. The best way to (permanently) disable these services:

sudo update-rc.d hostapd disable

sudo update-rc.d dnsmasq disable

- reboot

Tuesday, March 2, 2021

How To Setup Raspberry and RFID RC522 With very simple

Setup the RFID RC522 to Raspi like this:

- SDA connects to GPIO8 (Physical Pin 24)

- SCK connects to GPIO11 (Physical Pin 23)

- MOSI connects to GPIO10 (Physical Pin 19)

- MISO connects to GPIO9 (Physical Pin 21)

- GND connects to Breadboard Ground Rail. (20)

- RST connects to GPIO25 (Physical Pin 22)

- 3.3v connects to 3.3v (Physical Pin 1)





Enabled SPI (Interfaces)

pi@pi:~ $ sudo raspi-config

enabled SPI and reboot

pi@pi:~ $ sudo reboot


Test

pi@pi:~ $ lsmod | grep spi

spidev                 20480  0

spi_bcm2835            20480  0


Install

pi@pi:~ $ sudo pip3 install spidev

Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple

Requirement already satisfied: spidev in /usr/lib/python3/dist-packages (3.4)

pi@pi:~ $ sudo pip3 install mfrc522

Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple

Collecting mfrc522

  Downloading https://files.pythonhosted.org/packages/d5/b5/d33c0634cece0931c3c4e0978b0db58f248045c3b379ccf2d512b76fe044/mfrc522-0.0.7-py3-none-any.whl

Requirement already satisfied: RPi.GPIO in /usr/lib/python3/dist-packages (from mfrc522) (0.7.0)

Requirement already satisfied: spidev in /usr/lib/python3/dist-packages (from mfrc522) (3.4)

Installing collected packages: mfrc522

Successfully installed mfrc522-0.0.7


Make Directory and Python file

pi@pi:~ $ mkdir ~/pi-rfid

pi@pi:~ $ nano ~/pi-rfid/read.py

#!/usr/bin/env python
import RPi.GPIO as GPIO

from mfrc522 import SimpleMFRC522



reader = SimpleMFRC522()

try:

        id, text = reader.read()

        print(id)

        print(text)

finally:

        GPIO.cleanup()



Save it and test the file and tap the card

pi@pi:~ $ python3 ~/pi-rfid/read.py

627793730761


pi@pi:~ $ python3 ~/pi-rfid/read.py

658172191773




Monday, April 20, 2020

Instalasi dan konfigurasi Remote Desktop Connection pada Raspberry Pi

Selain komunikasi komputer client dengan Raspberry Pi menggunakan VNC Server. Bagaimana caranya komunikasi dengan bawaan Microsoft baik itu pada PC Desktop maupun dengan Android. Cara yang tepat yaitu dengan menggunakan Remote Desktop Connection. Biasanya PC sudah memilikinya secara langsung bawaan sistem, lalu bagaimana dengan Android dan iOS, ya, jawabannya yaitu https://play.google.com/store/apps/details?id=com.microsoft.rdc.android&hl=en dan https://apps.apple.com/us/app/microsoft-remote-desktop/id714464092 .



Lalu bagaimana proses konfigurasi pada Raspberry Pi, apakah sama dengan VNC Viewer pada artikel sebelumnya. Tentunya iya dibutuhkan konfigurasi, yaitu pada SSH. Lakukan proses instalasi xrdp pada Raspberry Pi dengan perintah berikut:

 

pi@pi:~ $ sudo apt-get install xrdp
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  alsa-base freetype2-doc gstreamer0.10-alsa gstreamer0.10-plugins-base
  libgstreamer-plugins-base0.10-0 libgstreamer0.10-0 libllvm8 libpng-tools
  libva-wayland2 libxfce4util-bin libxfce4util-common libxfce4util7
  libxfconf-0-2 pimixer point-rpi xfconf
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  libglu1-mesa ssl-cert x11-apps x11-session-utils xbitmaps xfonts-100dpi
  xfonts-75dpi xfonts-base xfonts-encodings xfonts-scalable xfonts-utils xorg
  xorg-docs-core xorgxrdp
Suggested packages:
  openssl-blacklist mesa-utils xorg-docs x11-xfs-utils guacamole
  xrdp-pulseaudio-installer
The following NEW packages will be installed:
  libglu1-mesa ssl-cert x11-apps x11-session-utils xbitmaps xfonts-100dpi
  xfonts-75dpi xfonts-base xfonts-encodings xfonts-scalable xfonts-utils xorg
  xorg-docs-core xorgxrdp xrdp
0 upgraded, 15 newly installed, 0 to remove and 0 not upgraded.
Need to get 15.5 MB of archives.
After this operation, 23.1 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf libglu1-mesa armhf 9.0.0-2.1 [130 kB]
Get:2 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf ssl-cert all 1.0.39 [20.8 kB]
Get:3 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf x11-apps armhf 7.7+7 [541 kB]
Get:4 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf x11-session-utils armhf 7.7+3 [61.2 kB]
Get:5 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xbitmaps all 1.1.1-2 [32.1 kB]
Get:6 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xfonts-encodings all 1:1.0.4-2 [574 kB]
Get:7 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xfonts-utils armhf 1:7.7+6 [82.5 kB]
Get:8 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xfonts-100dpi all 1:1.0.4+nmu1 [3,822 kB]
Get:9 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xfonts-75dpi all 1:1.0.4+nmu1 [3,367 kB]
Get:10 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xfonts-base all 1:1.0.5 [5,897 kB]
Get:11 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xfonts-scalable all 1:1.0.3-1.1 [304 kB]
Get:12 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xorg-docs-core all 1:1.7.1-1.1 [84.0 kB]
Get:13 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xorg armhf 1:7.7+19+b8 [38.8 kB]
Get:14 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xorgxrdp armhf 1:0.2.9-1 [164 kB]
Get:15 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf xrdp armhf 0.9.9-1 [394 kB]
Fetched 15.5 MB in 11min 34s (22.4 kB/s)                                       
Preconfiguring packages ...
Selecting previously unselected package libglu1-mesa:armhf.
(Reading database ... 97347 files and directories currently installed.)
Preparing to unpack .../00-libglu1-mesa_9.0.0-2.1_armhf.deb ...
Unpacking libglu1-mesa:armhf (9.0.0-2.1) ...
Selecting previously unselected package ssl-cert.
Preparing to unpack .../01-ssl-cert_1.0.39_all.deb ...
Unpacking ssl-cert (1.0.39) ...
Selecting previously unselected package x11-apps.
Preparing to unpack .../02-x11-apps_7.7+7_armhf.deb ...
Unpacking x11-apps (7.7+7) ...
Selecting previously unselected package x11-session-utils.
Preparing to unpack .../03-x11-session-utils_7.7+3_armhf.deb ...
Unpacking x11-session-utils (7.7+3) ...
Selecting previously unselected package xbitmaps.
Preparing to unpack .../04-xbitmaps_1.1.1-2_all.deb ...
Unpacking xbitmaps (1.1.1-2) ...
Selecting previously unselected package xfonts-encodings.
Preparing to unpack .../05-xfonts-encodings_1%3a1.0.4-2_all.deb ...
Unpacking xfonts-encodings (1:1.0.4-2) ...
Selecting previously unselected package xfonts-utils.
Preparing to unpack .../06-xfonts-utils_1%3a7.7+6_armhf.deb ...
Unpacking xfonts-utils (1:7.7+6) ...
Selecting previously unselected package xfonts-100dpi.
Preparing to unpack .../07-xfonts-100dpi_1%3a1.0.4+nmu1_all.deb ...
Unpacking xfonts-100dpi (1:1.0.4+nmu1) ...
Selecting previously unselected package xfonts-75dpi.
Preparing to unpack .../08-xfonts-75dpi_1%3a1.0.4+nmu1_all.deb ...
Unpacking xfonts-75dpi (1:1.0.4+nmu1) ...
Selecting previously unselected package xfonts-base.
Preparing to unpack .../09-xfonts-base_1%3a1.0.5_all.deb ...
Unpacking xfonts-base (1:1.0.5) ...
Selecting previously unselected package xfonts-scalable.
Preparing to unpack .../10-xfonts-scalable_1%3a1.0.3-1.1_all.deb ...
Unpacking xfonts-scalable (1:1.0.3-1.1) ...
Selecting previously unselected package xorg-docs-core.
Preparing to unpack .../11-xorg-docs-core_1%3a1.7.1-1.1_all.deb ...
Unpacking xorg-docs-core (1:1.7.1-1.1) ...
Selecting previously unselected package xorg.
Preparing to unpack .../12-xorg_1%3a7.7+19+b8_armhf.deb ...
Unpacking xorg (1:7.7+19+b8) ...
Selecting previously unselected package xorgxrdp.
Preparing to unpack .../13-xorgxrdp_1%3a0.2.9-1_armhf.deb ...
Unpacking xorgxrdp (1:0.2.9-1) ...
Selecting previously unselected package xrdp.
Preparing to unpack .../14-xrdp_0.9.9-1_armhf.deb ...
Unpacking xrdp (0.9.9-1) ...
Setting up x11-apps (7.7+7) ...
Setting up xorg-docs-core (1:1.7.1-1.1) ...
Setting up ssl-cert (1.0.39) ...
Setting up xfonts-encodings (1:1.0.4-2) ...
Setting up xorgxrdp (1:0.2.9-1) ...
Setting up x11-session-utils (7.7+3) ...
Setting up libglu1-mesa:armhf (9.0.0-2.1) ...
Setting up xbitmaps (1.1.1-2) ...
Setting up xrdp (0.9.9-1) ...

Generating 2048 bit rsa key...

ssl_gen_key_xrdp1 ok

saving to /etc/xrdp/rsakeys.ini

Created symlink /etc/systemd/system/multi-user.target.wants/xrdp-sesman.service → /lib/systemd/system/xrdp-sesman.service.
Created symlink /etc/systemd/system/multi-user.target.wants/xrdp.service → /lib/systemd/system/xrdp.service.
Setting up xfonts-utils (1:7.7+6) ...
Setting up xfonts-base (1:1.0.5) ...
Setting up xfonts-75dpi (1:1.0.4+nmu1) ...
Setting up xfonts-scalable (1:1.0.3-1.1) ...
Setting up xfonts-100dpi (1:1.0.4+nmu1) ...
Setting up xorg (1:7.7+19+b8) ...
Processing triggers for libc-bin (2.28-10+rpi1) ...
Processing triggers for systemd (241-7~deb10u3+rpi1) ...
Processing triggers for man-db (2.8.5-2) ...
Processing triggers for fontconfig (2.13.1-2) ...
pi@pi:~ $

 

Setelah itu lakukan koneksi seperti biasa dengan menggunakan IP dari Raspberry Pi.

Permasalahan lain dalam Raspberry, kami rangkum di bawah ini:
Raspberry Pi no sound on chromium but it still loading on VLC or the other application (hdmi / analog / headphone / bluetooth)
-> install this
sudo apt-get install chromium-codecs-ffmpeg-extra





Instalasi openCV hingga test Deep Learning pada Raspberry Pi

Ini hasil codingannya:

 



Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:30 http://raspbian.raspberrypi.org/raspbian buster/main armhf libsepol1-dev armhf 2.8-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:31 http://raspbian.raspberrypi.org/raspbian buster/main armhf libselinux1-dev armhf 2.8-1+b1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:32 http://raspbian.raspberrypi.org/raspbian buster/main armhf libglib2.0-dev armhf 2.58.3-2+deb10u2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:33 http://raspbian.raspberrypi.org/raspbian buster/main armhf libatk1.0-dev armhf 2.30.0-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:34 http://raspbian.raspberrypi.org/raspbian buster/main armhf liblzo2-2 armhf 2.10-0.1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:35 http://raspbian.raspberrypi.org/raspbian buster/main armhf libpng-dev armhf 1.6.36-6
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:36 http://raspbian.raspberrypi.org/raspbian buster/main armhf libfreetype6-dev armhf 2.9.1-3+deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:37 http://raspbian.raspberrypi.org/raspbian buster/main armhf libfontconfig1-dev armhf 2.13.1-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:38 http://raspbian.raspberrypi.org/raspbian buster/main armhf xorg-sgml-doctools all 1:1.11-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:39 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:40 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-core-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:41 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxau-dev armhf 1:1.0.8-1+b2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:42 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxdmcp-dev armhf 1:1.1.2-3
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:43 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-input-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:44 http://raspbian.raspberrypi.org/raspbian buster/main armhf xtrans-dev all 1.3.5-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:45 http://raspbian.raspberrypi.org/raspbian buster/main armhf libpthread-stubs0-dev armhf 0.4-1                          
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:46 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxcb1-dev armhf 1.13.1-2                                 
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:47 http://raspbian.raspberrypi.org/raspbian buster/main armhf libx11-dev armhf 2:1.6.7-1                                 
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:48 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxrender-dev armhf 1:0.9.10-1                            
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:49 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-xext-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:50 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxext-dev armhf 2:1.3.3-1+b2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:51 http://raspbian.raspberrypi.org/raspbian buster/main armhf libice-dev armhf 2:1.0.9-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:52 http://raspbian.raspberrypi.org/raspbian buster/main armhf libsm-dev armhf 2:1.2.3-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:53 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxcb-render0-dev armhf 1.13.1-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:54 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxcb-shm0-dev armhf 1.13.1-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:55 http://raspbian.raspberrypi.org/raspbian buster/main armhf libfribidi-dev armhf 1.0.5-3.1+deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:56 http://raspbian.raspberrypi.org/raspbian buster/main armhf libgdk-pixbuf2.0-bin armhf 2.38.1+dfsg-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:57 http://raspbian.raspberrypi.org/raspbian buster/main armhf libgdk-pixbuf2.0-dev armhf 2.38.1+dfsg-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:58 http://raspbian.raspberrypi.org/raspbian buster/main armhf libgraphite2-dev armhf 1.3.13-7
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:59 http://raspbian.raspberrypi.org/raspbian buster/main armhf libicu-dev armhf 63.1-6+deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:60 http://raspbian.raspberrypi.org/raspbian buster/main armhf libharfbuzz-dev armhf 2.3.1-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:61 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxft-dev armhf 2.3.2-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:62 http://raspbian.raspberrypi.org/raspbian buster/main armhf pango1.0-tools armhf 1.42.4-7~deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:63 http://raspbian.raspberrypi.org/raspbian buster/main armhf libpango1.0-dev armhf 1.42.4-7~deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:64 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-xinerama-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:65 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxinerama-dev armhf 2:1.1.4-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:66 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-fixes-dev all 1:2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:67 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxfixes-dev armhf 1:5.0.3-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:68 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxi-dev armhf 2:1.7.9-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:69 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-randr-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:70 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxrandr-dev armhf 2:1.5.1-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:71 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxcursor-dev armhf 1:1.1.15-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:72 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-composite-dev all 1:2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:73 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxcomposite-dev armhf 1:0.4.4-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:74 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-damage-dev all 1:2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:75 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxdamage-dev armhf 1:1.1.4-3+b3
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:76 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxml2-utils armhf 2.9.4+dfsg1-7+b3
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:77 http://raspbian.raspberrypi.org/raspbian buster/main armhf libltdl-dev armhf 2.4.6-9
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:78 http://raspbian.raspberrypi.org/raspbian buster/main armhf libsys-hostname-long-perl all 1.5-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Err:79 http://raspbian.raspberrypi.org/raspbian buster/main armhf libmail-sendmail-perl all 0.80-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
Get:80 http://archive.raspberrypi.org/debian buster/main armhf gir1.2-gtk-2.0 armhf 2.24.32-3+rpt1 [213 kB]
Get:81 http://archive.raspberrypi.org/debian buster/main armhf libcairo-script-interpreter2 armhf 1.16.0-4+rpt1 [150 kB]
Get:82 http://archive.raspberrypi.org/debian buster/main armhf libpixman-1-dev armhf 0.36.0-1+rpt1 [498 kB]
Get:83 http://archive.raspberrypi.org/debian buster/main armhf libcairo2-dev armhf 1.16.0-4+rpt1 [618 kB]
Get:84 http://archive.raspberrypi.org/debian buster/main armhf libgtk2.0-dev armhf 2.24.32-3+rpt1 [2,333 kB]
Get:84 http://archive.raspberrypi.org/debian buster/main armhf libgtk2.0-dev armhf 2.24.32-3+rpt1 [2,333 kB]                 
Fetched 1,576 kB in 1min 26s (18.4 kB/s)     
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libs/libsigsegv/libsigsegv2_2.12-2_armhf.deb  Could not connect to raspbian.raspberrypi.org:80 (93.93.128.193). - connect (113: No route to host) Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/m/m4/m4_1.4.18-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/a/autoconf/autoconf_2.69-11_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/a/autotools-dev/autotools-dev_20180224.1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/a/automake-1.16/automake_1.16.1-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/gettext/autopoint_0.19.8.1-9_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libt/libtool/libtool_2.4.6-9_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/d/dh-autoreconf/dh-autoreconf_19_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/liba/libarchive-zip-perl/libarchive-zip-perl_1.64-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/s/strip-nondeterminism/libfile-stripnondeterminism-perl_1.1.2-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/s/strip-nondeterminism/dh-strip-nondeterminism_1.1.2-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/d/dwz/dwz_0.12-3_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/gettext/gettext_0.19.8.1-9_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/i/intltool-debian/intltool-debian_0.35.0+20060710.5_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/po-debconf/po-debconf_1.0.21_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/d/debhelper/debhelper_12.1.1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/h/harfbuzz/libharfbuzz-gobject0_2.3.1-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/h/harfbuzz/gir1.2-harfbuzz-0.0_2.3.1-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/i/icu/icu-devtools_63.1-6+deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/liba/libarchive-cpio-perl/libarchive-cpio-perl_0.10-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libf/libffi/libffi-dev_3.2.1-9_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/glib2.0/libglib2.0-dev-bin_2.58.3-2+deb10u2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/u/util-linux/uuid-dev_2.33.1-0.1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/u/util-linux/libblkid-dev_2.33.1-0.1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/u/util-linux/libmount-dev_2.33.1-0.1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pcre3/libpcre16-3_8.39-12_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pcre3/libpcre32-3_8.39-12_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pcre3/libpcrecpp0v5_8.39-12_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pcre3/libpcre3-dev_8.39-12_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libs/libsepol/libsepol1-dev_2.8-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libs/libselinux/libselinux1-dev_2.8-1+b1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/glib2.0/libglib2.0-dev_2.58.3-2+deb10u2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/a/atk1.0/libatk1.0-dev_2.30.0-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/l/lzo2/liblzo2-2_2.10-0.1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libp/libpng1.6/libpng-dev_1.6.36-6_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/f/freetype/libfreetype6-dev_2.9.1-3+deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/f/fontconfig/libfontconfig1-dev_2.13.1-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorg-sgml-doctools/xorg-sgml-doctools_1.11-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-core-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxau/libxau-dev_1.0.8-1+b2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxdmcp/libxdmcp-dev_1.1.2-3_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-input-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xtrans/xtrans-dev_1.3.5-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libp/libpthread-stubs/libpthread-stubs0-dev_0.4-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxcb/libxcb1-dev_1.13.1-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libx11/libx11-dev_1.6.7-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxrender/libxrender-dev_0.9.10-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-xext-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxext/libxext-dev_1.3.3-1+b2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libi/libice/libice-dev_1.0.9-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libs/libsm/libsm-dev_1.2.3-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxcb/libxcb-render0-dev_1.13.1-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxcb/libxcb-shm0-dev_1.13.1-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/f/fribidi/libfribidi-dev_1.0.5-3.1+deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-bin_2.38.1+dfsg-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-dev_2.38.1+dfsg-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/graphite2/libgraphite2-dev_1.3.13-7_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/i/icu/libicu-dev_63.1-6+deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/h/harfbuzz/libharfbuzz-dev_2.3.1-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xft/libxft-dev_2.3.2-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pango1.0/pango1.0-tools_1.42.4-7~deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pango1.0/libpango1.0-dev_1.42.4-7~deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-xinerama-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxinerama/libxinerama-dev_1.1.4-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-fixes-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxfixes/libxfixes-dev_5.0.3-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxi/libxi-dev_1.7.9-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-randr-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxrandr/libxrandr-dev_1.5.1-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxcursor/libxcursor-dev_1.1.15-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-composite-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxcomposite/libxcomposite-dev_0.4.4-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-damage-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxdamage/libxdamage-dev_1.1.4-3+b3_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxml2/libxml2-utils_2.9.4+dfsg1-7+b3_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libt/libtool/libltdl-dev_2.4.6-9_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libs/libsys-hostname-long-perl/libsys-hostname-long-perl_1.5-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libm/libmail-sendmail-perl/libmail-sendmail-perl_0.80-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable)
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
pi@pi:~ $ sudo apt-get install libgtk2.0-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  alsa-base gstreamer0.10-alsa gstreamer0.10-plugins-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0 libllvm8
  libpng12-0 libva-wayland2 libxfce4util-bin libxfce4util-common libxfce4util7 libxfconf-0-2 pimixer point-rpi xfconf
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  autoconf automake autopoint autotools-dev debhelper dh-autoreconf dh-strip-nondeterminism dwz gettext gir1.2-gtk-2.0
  gir1.2-harfbuzz-0.0 icu-devtools intltool-debian libarchive-cpio-perl libarchive-zip-perl libatk1.0-dev libblkid-dev
  libcairo-script-interpreter2 libcairo2-dev libffi-dev libfile-stripnondeterminism-perl libfontconfig1-dev libfreetype6-dev
  libfribidi-dev libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-dev libglib2.0-dev libglib2.0-dev-bin libgraphite2-dev
  libharfbuzz-dev libharfbuzz-gobject0 libice-dev libicu-dev libltdl-dev liblzo2-2 libmail-sendmail-perl libmount-dev
  libpango1.0-dev libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-dev libpng-dev libpthread-stubs0-dev
  libselinux1-dev libsepol1-dev libsigsegv2 libsm-dev libsys-hostname-long-perl libtool libx11-dev libxau-dev
  libxcb-render0-dev libxcb-shm0-dev libxcb1-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev
  libxfixes-dev libxft-dev libxi-dev libxinerama-dev libxml2-utils libxrandr-dev libxrender-dev m4 pango1.0-tools po-debconf
  uuid-dev x11proto-composite-dev x11proto-core-dev x11proto-damage-dev x11proto-dev x11proto-fixes-dev x11proto-input-dev
  x11proto-randr-dev x11proto-xext-dev x11proto-xinerama-dev xorg-sgml-doctools xtrans-dev
Suggested packages:
  autoconf-archive gnu-standards autoconf-doc dh-make gettext-doc libasprintf-dev libgettextpo-dev libcairo2-doc
  libglib2.0-doc libgraphite2-utils libgtk2.0-doc libice-doc icu-doc libtool-doc imagemagick libpango1.0-doc libsm-doc
  gfortran | fortran95-compiler gcj-jdk libx11-doc libxcb-doc libxext-doc m4-doc libmail-box-perl
The following packages will be REMOVED:
  libpng12-dev
The following NEW packages will be installed:
  autoconf automake autopoint autotools-dev debhelper dh-autoreconf dh-strip-nondeterminism dwz gettext gir1.2-gtk-2.0
  gir1.2-harfbuzz-0.0 icu-devtools intltool-debian libarchive-cpio-perl libarchive-zip-perl libatk1.0-dev libblkid-dev
  libcairo-script-interpreter2 libcairo2-dev libffi-dev libfile-stripnondeterminism-perl libfontconfig1-dev libfreetype6-dev
  libfribidi-dev libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-dev libglib2.0-dev libglib2.0-dev-bin libgraphite2-dev libgtk2.0-dev
  libharfbuzz-dev libharfbuzz-gobject0 libice-dev libicu-dev libltdl-dev liblzo2-2 libmail-sendmail-perl libmount-dev
  libpango1.0-dev libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-dev libpng-dev libpthread-stubs0-dev
  libselinux1-dev libsepol1-dev libsigsegv2 libsm-dev libsys-hostname-long-perl libtool libx11-dev libxau-dev
  libxcb-render0-dev libxcb-shm0-dev libxcb1-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev
  libxfixes-dev libxft-dev libxi-dev libxinerama-dev libxml2-utils libxrandr-dev libxrender-dev m4 pango1.0-tools po-debconf
  uuid-dev x11proto-composite-dev x11proto-core-dev x11proto-damage-dev x11proto-dev x11proto-fixes-dev x11proto-input-dev
  x11proto-randr-dev x11proto-xext-dev x11proto-xinerama-dev xorg-sgml-doctools xtrans-dev
0 upgraded, 84 newly installed, 1 to remove and 0 not upgraded.
Need to get 25.7 MB/29.5 MB of archives.
After this operation, 112 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf libsigsegv2 armhf 2.12-2 [32.3 kB]
Get:2 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf m4 armhf 1.4.18-2 [185 kB]
Get:3 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf autoconf all 2.69-11 [341 kB]
Get:4 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf autotools-dev all 20180224.1 [77.0 kB]
Err:6 http://raspbian.raspberrypi.org/raspbian buster/main armhf autopoint all 0.19.8.1-9
  Could not connect to raspbian.raspberrypi.org:80 (93.93.128.193). - connect (113: No route to host) Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:7 http://raspbian.raspberrypi.org/raspbian buster/main armhf libtool all 2.4.6-9
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:8 http://raspbian.raspberrypi.org/raspbian buster/main armhf dh-autoreconf all 19
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:9 http://raspbian.raspberrypi.org/raspbian buster/main armhf libarchive-zip-perl all 1.64-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:10 http://raspbian.raspberrypi.org/raspbian buster/main armhf libfile-stripnondeterminism-perl all 1.1.2-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:11 http://raspbian.raspberrypi.org/raspbian buster/main armhf dh-strip-nondeterminism all 1.1.2-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:12 http://raspbian.raspberrypi.org/raspbian buster/main armhf dwz armhf 0.12-3
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:13 http://raspbian.raspberrypi.org/raspbian buster/main armhf gettext armhf 0.19.8.1-9
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:14 http://raspbian.raspberrypi.org/raspbian buster/main armhf intltool-debian all 0.35.0+20060710.5
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:15 http://raspbian.raspberrypi.org/raspbian buster/main armhf po-debconf all 1.0.21
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:16 http://raspbian.raspberrypi.org/raspbian buster/main armhf debhelper all 12.1.1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:17 http://raspbian.raspberrypi.org/raspbian buster/main armhf libharfbuzz-gobject0 armhf 2.3.1-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:18 http://raspbian.raspberrypi.org/raspbian buster/main armhf gir1.2-harfbuzz-0.0 armhf 2.3.1-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:19 http://raspbian.raspberrypi.org/raspbian buster/main armhf icu-devtools armhf 63.1-6+deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:20 http://raspbian.raspberrypi.org/raspbian buster/main armhf libarchive-cpio-perl all 0.10-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:21 http://raspbian.raspberrypi.org/raspbian buster/main armhf libffi-dev armhf 3.2.1-9
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:22 http://raspbian.raspberrypi.org/raspbian buster/main armhf libglib2.0-dev-bin armhf 2.58.3-2+deb10u2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:23 http://raspbian.raspberrypi.org/raspbian buster/main armhf uuid-dev armhf 2.33.1-0.1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:24 http://raspbian.raspberrypi.org/raspbian buster/main armhf libblkid-dev armhf 2.33.1-0.1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:25 http://raspbian.raspberrypi.org/raspbian buster/main armhf libmount-dev armhf 2.33.1-0.1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:26 http://raspbian.raspberrypi.org/raspbian buster/main armhf libpcre16-3 armhf 2:8.39-12  
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:27 http://raspbian.raspberrypi.org/raspbian buster/main armhf libpcre32-3 armhf 2:8.39-12  
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:28 http://raspbian.raspberrypi.org/raspbian buster/main armhf libpcrecpp0v5 armhf 2:8.39-12
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:29 http://raspbian.raspberrypi.org/raspbian buster/main armhf libpcre3-dev armhf 2:8.39-12
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:30 http://raspbian.raspberrypi.org/raspbian buster/main armhf libsepol1-dev armhf 2.8-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:31 http://raspbian.raspberrypi.org/raspbian buster/main armhf libselinux1-dev armhf 2.8-1+b1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:32 http://raspbian.raspberrypi.org/raspbian buster/main armhf libglib2.0-dev armhf 2.58.3-2+deb10u2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Get:5 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf automake all 1:1.16.1-4 [771 kB]
Err:33 http://raspbian.raspberrypi.org/raspbian buster/main armhf libatk1.0-dev armhf 2.30.0-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:34 http://raspbian.raspberrypi.org/raspbian buster/main armhf liblzo2-2 armhf 2.10-0.1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:35 http://raspbian.raspberrypi.org/raspbian buster/main armhf libpng-dev armhf 1.6.36-6
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:36 http://raspbian.raspberrypi.org/raspbian buster/main armhf libfreetype6-dev armhf 2.9.1-3+deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:37 http://raspbian.raspberrypi.org/raspbian buster/main armhf libfontconfig1-dev armhf 2.13.1-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:38 http://raspbian.raspberrypi.org/raspbian buster/main armhf xorg-sgml-doctools all 1:1.11-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:39 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:40 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-core-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:41 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxau-dev armhf 1:1.0.8-1+b2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:42 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxdmcp-dev armhf 1:1.1.2-3
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:43 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-input-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:44 http://raspbian.raspberrypi.org/raspbian buster/main armhf xtrans-dev all 1.3.5-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:45 http://raspbian.raspberrypi.org/raspbian buster/main armhf libpthread-stubs0-dev armhf 0.4-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:46 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxcb1-dev armhf 1.13.1-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:47 http://raspbian.raspberrypi.org/raspbian buster/main armhf libx11-dev armhf 2:1.6.7-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:48 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxrender-dev armhf 1:0.9.10-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:49 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-xext-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:50 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxext-dev armhf 2:1.3.3-1+b2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:51 http://raspbian.raspberrypi.org/raspbian buster/main armhf libice-dev armhf 2:1.0.9-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:52 http://raspbian.raspberrypi.org/raspbian buster/main armhf libsm-dev armhf 2:1.2.3-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:53 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxcb-render0-dev armhf 1.13.1-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:54 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxcb-shm0-dev armhf 1.13.1-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:55 http://raspbian.raspberrypi.org/raspbian buster/main armhf libfribidi-dev armhf 1.0.5-3.1+deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:56 http://raspbian.raspberrypi.org/raspbian buster/main armhf libgdk-pixbuf2.0-bin armhf 2.38.1+dfsg-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:57 http://raspbian.raspberrypi.org/raspbian buster/main armhf libgdk-pixbuf2.0-dev armhf 2.38.1+dfsg-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:58 http://raspbian.raspberrypi.org/raspbian buster/main armhf libgraphite2-dev armhf 1.3.13-7
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:59 http://raspbian.raspberrypi.org/raspbian buster/main armhf libicu-dev armhf 63.1-6+deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:60 http://raspbian.raspberrypi.org/raspbian buster/main armhf libharfbuzz-dev armhf 2.3.1-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:61 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxft-dev armhf 2.3.2-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:62 http://raspbian.raspberrypi.org/raspbian buster/main armhf pango1.0-tools armhf 1.42.4-7~deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:63 http://raspbian.raspberrypi.org/raspbian buster/main armhf libpango1.0-dev armhf 1.42.4-7~deb10u1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:64 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-xinerama-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:65 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxinerama-dev armhf 2:1.1.4-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:66 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-fixes-dev all 1:2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:67 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxfixes-dev armhf 1:5.0.3-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:68 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxi-dev armhf 2:1.7.9-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:69 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-randr-dev all 2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:70 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxrandr-dev armhf 2:1.5.1-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:71 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxcursor-dev armhf 1:1.1.15-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:72 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-composite-dev all 1:2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:73 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxcomposite-dev armhf 1:0.4.4-2
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:74 http://raspbian.raspberrypi.org/raspbian buster/main armhf x11proto-damage-dev all 1:2018.4-4
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:75 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxdamage-dev armhf 1:1.1.4-3+b3
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:76 http://raspbian.raspberrypi.org/raspbian buster/main armhf libxml2-utils armhf 2.9.4+dfsg1-7+b3
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:77 http://raspbian.raspberrypi.org/raspbian buster/main armhf libltdl-dev armhf 2.4.6-9
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:78 http://raspbian.raspberrypi.org/raspbian buster/main armhf libsys-hostname-long-perl all 1.5-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Err:79 http://raspbian.raspberrypi.org/raspbian buster/main armhf libmail-sendmail-perl all 0.80-1
  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
Fetched 1,407 kB in 8s (180 kB/s)                                                                                            
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/gettext/autopoint_0.19.8.1-9_all.deb  Could not connect to raspbian.raspberrypi.org:80 (93.93.128.193). - connect (113: No route to host) Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libt/libtool/libtool_2.4.6-9_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/d/dh-autoreconf/dh-autoreconf_19_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/liba/libarchive-zip-perl/libarchive-zip-perl_1.64-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/s/strip-nondeterminism/libfile-stripnondeterminism-perl_1.1.2-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/s/strip-nondeterminism/dh-strip-nondeterminism_1.1.2-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/d/dwz/dwz_0.12-3_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/gettext/gettext_0.19.8.1-9_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/i/intltool-debian/intltool-debian_0.35.0+20060710.5_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/po-debconf/po-debconf_1.0.21_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/d/debhelper/debhelper_12.1.1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/h/harfbuzz/libharfbuzz-gobject0_2.3.1-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/h/harfbuzz/gir1.2-harfbuzz-0.0_2.3.1-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/i/icu/icu-devtools_63.1-6+deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/liba/libarchive-cpio-perl/libarchive-cpio-perl_0.10-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libf/libffi/libffi-dev_3.2.1-9_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/glib2.0/libglib2.0-dev-bin_2.58.3-2+deb10u2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/u/util-linux/uuid-dev_2.33.1-0.1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/u/util-linux/libblkid-dev_2.33.1-0.1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/u/util-linux/libmount-dev_2.33.1-0.1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pcre3/libpcre16-3_8.39-12_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pcre3/libpcre32-3_8.39-12_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pcre3/libpcrecpp0v5_8.39-12_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pcre3/libpcre3-dev_8.39-12_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libs/libsepol/libsepol1-dev_2.8-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libs/libselinux/libselinux1-dev_2.8-1+b1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/glib2.0/libglib2.0-dev_2.58.3-2+deb10u2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/a/atk1.0/libatk1.0-dev_2.30.0-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/l/lzo2/liblzo2-2_2.10-0.1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libp/libpng1.6/libpng-dev_1.6.36-6_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/f/freetype/libfreetype6-dev_2.9.1-3+deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/f/fontconfig/libfontconfig1-dev_2.13.1-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorg-sgml-doctools/xorg-sgml-doctools_1.11-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-core-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxau/libxau-dev_1.0.8-1+b2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxdmcp/libxdmcp-dev_1.1.2-3_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-input-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xtrans/xtrans-dev_1.3.5-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libp/libpthread-stubs/libpthread-stubs0-dev_0.4-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxcb/libxcb1-dev_1.13.1-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libx11/libx11-dev_1.6.7-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxrender/libxrender-dev_0.9.10-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-xext-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxext/libxext-dev_1.3.3-1+b2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libi/libice/libice-dev_1.0.9-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libs/libsm/libsm-dev_1.2.3-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxcb/libxcb-render0-dev_1.13.1-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxcb/libxcb-shm0-dev_1.13.1-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/f/fribidi/libfribidi-dev_1.0.5-3.1+deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-bin_2.38.1+dfsg-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-dev_2.38.1+dfsg-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/g/graphite2/libgraphite2-dev_1.3.13-7_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/i/icu/libicu-dev_63.1-6+deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/h/harfbuzz/libharfbuzz-dev_2.3.1-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xft/libxft-dev_2.3.2-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pango1.0/pango1.0-tools_1.42.4-7~deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/p/pango1.0/libpango1.0-dev_1.42.4-7~deb10u1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-xinerama-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxinerama/libxinerama-dev_1.1.4-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-fixes-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxfixes/libxfixes-dev_5.0.3-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxi/libxi-dev_1.7.9-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-randr-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxrandr/libxrandr-dev_1.5.1-1_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxcursor/libxcursor-dev_1.1.15-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-composite-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxcomposite/libxcomposite-dev_0.4.4-2_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/x/xorgproto/x11proto-damage-dev_2018.4-4_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxdamage/libxdamage-dev_1.1.4-3+b3_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libx/libxml2/libxml2-utils_2.9.4+dfsg1-7+b3_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libt/libtool/libltdl-dev_2.4.6-9_armhf.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libs/libsys-hostname-long-perl/libsys-hostname-long-perl_1.5-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Failed to fetch http://raspbian.raspberrypi.org/raspbian/pool/main/libm/libmail-sendmail-perl/libmail-sendmail-perl_0.80-1_all.deb  Cannot initiate the connection to raspbian.raspberrypi.org:80 (2a00:1098:0:80:1000:75:0:3). - connect (101: Network is unreachable) [IP: 93.93.128.193 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
pi@pi:~ $ sudo apt-get install libatlas-base-dev gfortran
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  alsa-base freetype2-doc gstreamer0.10-alsa gstreamer0.10-plugins-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0
  libllvm8 libpng-tools libva-wayland2 libxfce4util-bin libxfce4util-common libxfce4util7 libxfconf-0-2 pimixer point-rpi
  xfconf
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  gfortran-8 libatlas3-base libgfortran-8-dev
Suggested packages:
  gfortran-doc gfortran-8-doc libgfortran5-dbg libcoarrays-dev libatlas-doc liblapack-doc
The following NEW packages will be installed:
  gfortran gfortran-8 libatlas-base-dev libatlas3-base libgfortran-8-dev
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 12.8 MB of archives.
After this operation, 54.3 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf libgfortran-8-dev armhf 8.3.0-6+rpi1 [249 kB]
Get:2 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf gfortran-8 armhf 8.3.0-6+rpi1 [7,202 kB]
Get:3 http://raspbian.raspberrypi.org/raspbian buster/main armhf gfortran armhf 4:8.3.0-1+rpi2 [1,428 B]
Get:4 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf libatlas3-base armhf 3.10.3-8+rpi1 [2,399 kB]  
Get:5 http://kartolo.sby.datautama.net.id/raspbian/raspbian buster/main armhf libatlas-base-dev armhf 3.10.3-8+rpi1 [2,966 kB]
Fetched 12.8 MB in 1min 1s (209 kB/s)                                                                                        
Selecting previously unselected package libgfortran-8-dev:armhf.
(Reading database ... 97121 files and directories currently installed.)
Preparing to unpack .../libgfortran-8-dev_8.3.0-6+rpi1_armhf.deb ...
Unpacking libgfortran-8-dev:armhf (8.3.0-6+rpi1) ...
Selecting previously unselected package gfortran-8.
Preparing to unpack .../gfortran-8_8.3.0-6+rpi1_armhf.deb ...
Unpacking gfortran-8 (8.3.0-6+rpi1) ...
Selecting previously unselected package gfortran.
Preparing to unpack .../gfortran_4%3a8.3.0-1+rpi2_armhf.deb ...
Unpacking gfortran (4:8.3.0-1+rpi2) ...
Selecting previously unselected package libatlas3-base:armhf.
Preparing to unpack .../libatlas3-base_3.10.3-8+rpi1_armhf.deb ...
Unpacking libatlas3-base:armhf (3.10.3-8+rpi1) ...
Selecting previously unselected package libatlas-base-dev:armhf.
Preparing to unpack .../libatlas-base-dev_3.10.3-8+rpi1_armhf.deb ...
Unpacking libatlas-base-dev:armhf (3.10.3-8+rpi1) ...
Setting up libgfortran-8-dev:armhf (8.3.0-6+rpi1) ...
Setting up libatlas3-base:armhf (3.10.3-8+rpi1) ...
update-alternatives: using /usr/lib/arm-linux-gnueabihf/atlas/libblas.so.3 to provide /usr/lib/arm-linux-gnueabihf/libblas.so.3 (libblas.so.3-arm-linux-gnueabihf) in auto mode
update-alternatives: using /usr/lib/arm-linux-gnueabihf/atlas/liblapack.so.3 to provide /usr/lib/arm-linux-gnueabihf/liblapack.so.3 (liblapack.so.3-arm-linux-gnueabihf) in auto mode
Setting up gfortran-8 (8.3.0-6+rpi1) ...
Setting up gfortran (4:8.3.0-1+rpi2) ...
update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f95 (f95) in auto mode
update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f77 (f77) in auto mode
Setting up libatlas-base-dev:armhf (3.10.3-8+rpi1) ...
update-alternatives: using /usr/lib/arm-linux-gnueabihf/atlas/libblas.so to provide /usr/lib/arm-linux-gnueabihf/libblas.so (libblas.so-arm-linux-gnueabihf) in auto mode
update-alternatives: using /usr/lib/arm-linux-gnueabihf/atlas/liblapack.so to provide /usr/lib/arm-linux-gnueabihf/liblapack.so (liblapack.so-arm-linux-gnueabihf) in auto mode
Processing triggers for man-db (2.8.5-2) ...
Processing triggers for libc-bin (2.28-10+rpi1) ...
pi@pi:~ $ sudo apt-get install python2.7-dev python3-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python2.7-dev is already the newest version (2.7.16-2+deb10u1).
python2.7-dev set to manually installed.
python3-dev is already the newest version (3.7.3-1).
python3-dev set to manually installed.
The following packages were automatically installed and are no longer required:
  alsa-base freetype2-doc gstreamer0.10-alsa gstreamer0.10-plugins-base libgstreamer-plugins-base0.10-0 libgstreamer0.10-0
  libllvm8 libpng-tools libva-wayland2 libxfce4util-bin libxfce4util-common libxfce4util7 libxfconf-0-2 pimixer point-rpi
  xfconf
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
pi@pi:~ $ wget -O opencv.zip https://github.com/Itseez/opencv/archive/3.1.0.zip




creating: opencv_contrib-3.1.0/modules/saliency/doc/
   creating: opencv_contrib-3.1.0/modules/saliency/doc/pics/
  inflating: opencv_contrib-3.1.0/modules/saliency/doc/pics/saliency.png  
  inflating: opencv_contrib-3.1.0/modules/saliency/doc/saliency.bib  
   creating: opencv_contrib-3.1.0/modules/saliency/include/
   creating: opencv_contrib-3.1.0/modules/saliency/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/saliency/include/opencv2/saliency.hpp  
   creating: opencv_contrib-3.1.0/modules/saliency/include/opencv2/saliency/
  inflating: opencv_contrib-3.1.0/modules/saliency/include/opencv2/saliency/saliencyBaseClasses.hpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/include/opencv2/saliency/saliencySpecializedClasses.hpp  
   creating: opencv_contrib-3.1.0/modules/saliency/samples/
   creating: opencv_contrib-3.1.0/modules/saliency/samples/ObjectnessTrainedModel/
 extracting: opencv_contrib-3.1.0/modules/saliency/samples/ObjectnessTrainedModel/ObjNessB2W8HSV.idx.yml.gz  
 extracting: opencv_contrib-3.1.0/modules/saliency/samples/ObjectnessTrainedModel/ObjNessB2W8HSV.wS1.yml.gz  
 extracting: opencv_contrib-3.1.0/modules/saliency/samples/ObjectnessTrainedModel/ObjNessB2W8HSV.wS2.yml.gz  
 extracting: opencv_contrib-3.1.0/modules/saliency/samples/ObjectnessTrainedModel/ObjNessB2W8I.idx.yml.gz  
 extracting: opencv_contrib-3.1.0/modules/saliency/samples/ObjectnessTrainedModel/ObjNessB2W8I.wS1.yml.gz  
 extracting: opencv_contrib-3.1.0/modules/saliency/samples/ObjectnessTrainedModel/ObjNessB2W8I.wS2.yml.gz  
 extracting: opencv_contrib-3.1.0/modules/saliency/samples/ObjectnessTrainedModel/ObjNessB2W8MAXBGR.idx.yml.gz  
 extracting: opencv_contrib-3.1.0/modules/saliency/samples/ObjectnessTrainedModel/ObjNessB2W8MAXBGR.wS1.yml.gz  
 extracting: opencv_contrib-3.1.0/modules/saliency/samples/ObjectnessTrainedModel/ObjNessB2W8MAXBGR.wS2.yml.gz  
  inflating: opencv_contrib-3.1.0/modules/saliency/samples/computeSaliency.cpp  
   creating: opencv_contrib-3.1.0/modules/saliency/src/
   creating: opencv_contrib-3.1.0/modules/saliency/src/BING/
  inflating: opencv_contrib-3.1.0/modules/saliency/src/BING/CmFile.cpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/BING/CmFile.hpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/BING/CmShow.cpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/BING/CmShow.hpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/BING/CmTimer.hpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/BING/FilterTIG.cpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/BING/ValStructVec.cpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/BING/kyheader.hpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/BING/objectnessBING.cpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/motionSaliency.cpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/motionSaliencyBinWangApr2014.cpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/objectness.cpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/saliency.cpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/staticSaliency.cpp  
  inflating: opencv_contrib-3.1.0/modules/saliency/src/staticSaliencySpectralResidual.cpp  
   creating: opencv_contrib-3.1.0/modules/sfm/
  inflating: opencv_contrib-3.1.0/modules/sfm/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/sfm/README.md  
   creating: opencv_contrib-3.1.0/modules/sfm/doc/
   creating: opencv_contrib-3.1.0/modules/sfm/doc/pics/
  inflating: opencv_contrib-3.1.0/modules/sfm/doc/pics/desktop_trajectory.png  
  inflating: opencv_contrib-3.1.0/modules/sfm/doc/pics/sagrada_familia_input.jpg  
  inflating: opencv_contrib-3.1.0/modules/sfm/doc/pics/sagrada_familia_reconstruction.jpg  
  inflating: opencv_contrib-3.1.0/modules/sfm/doc/pics/temple_input.jpg  
  inflating: opencv_contrib-3.1.0/modules/sfm/doc/pics/temple_reconstruction.jpg  
   creating: opencv_contrib-3.1.0/modules/sfm/include/
   creating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/sfm.hpp  
   creating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/sfm/
  inflating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/sfm/conditioning.hpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/sfm/fundamental.hpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/sfm/numeric.hpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/sfm/projection.hpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/sfm/reconstruct.hpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/sfm/robust.hpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/sfm/simple_pipeline.hpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/include/opencv2/sfm/triangulation.hpp  
   creating: opencv_contrib-3.1.0/modules/sfm/samples/
   creating: opencv_contrib-3.1.0/modules/sfm/samples/data/
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/data/backyard.blend  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/data/backyard_tracks.txt  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/data/desktop.blend  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/data/desktop_tracks.txt  
   creating: opencv_contrib-3.1.0/modules/sfm/samples/data/images/
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/data/images/dataset_files.txt  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/data/images/resized_IMG_2889.jpg  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/data/images/resized_IMG_2890.jpg  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/data/images/resized_IMG_2891.jpg  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/data/images/resized_IMG_2892.jpg  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/data/recon2v_checkerboards.txt  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/recon2v.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/scene_reconstruction.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/samples/trajectory_reconstruccion.cpp  
   creating: opencv_contrib-3.1.0/modules/sfm/src/
  inflating: opencv_contrib-3.1.0/modules/sfm/src/conditioning.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/fundamental.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_capi.h  
   creating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/
   creating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/CMake/
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/CMake/Installation.cmake  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/CMakeLists.txt  
   creating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/CMakeLists.txt  
   creating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/base/
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/base/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/base/vector.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/base/vector_utils.h  
   creating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/bipartite_graph.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/feature.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/feature_matching.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/feature_matching.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/matches.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/matches.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/nRobustViewMatching.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/nRobustViewMatching.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/correspondence/nViewMatchingInterface.h  
   creating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/logging/
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/logging/logging.h  
   creating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/conditioning.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/conditioning.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/euclidean_resection.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/euclidean_resection.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/fundamental.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/fundamental.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/fundamental_kernel.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/fundamental_kernel.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/homography.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/homography.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/homography_error.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/homography_parameterization.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/nviewtriangulation.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/panography.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/panography.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/panography_kernel.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/panography_kernel.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/projection.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/projection.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/random_sample.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/resection.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/resection_kernel.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/robust_estimation.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/robust_estimation.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/robust_fundamental.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/robust_fundamental.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/robust_resection.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/robust_resection.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/triangulation.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/triangulation.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/two_view_kernel.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/twoviewtriangulation.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/multiview/twoviewtriangulation.h  
   creating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/numeric/
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/numeric/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/numeric/function_derivative.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/numeric/levenberg_marquardt.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/numeric/numeric.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/numeric/numeric.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/numeric/poly.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/numeric/poly.h  
   creating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/bundle.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/bundle.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/callbacks.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/camera_intrinsics.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/camera_intrinsics.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/camera_intrinsics_impl.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/distortion_models.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/distortion_models.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/initialize_reconstruction.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/initialize_reconstruction.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/intersect.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/intersect.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/keyframe_selection.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/keyframe_selection.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/pipeline.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/pipeline.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/reconstruction.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/reconstruction.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/reconstruction_scale.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/reconstruction_scale.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/resect.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/resect.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/tracks.cc  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/libmv_light/libmv/simple_pipeline/tracks.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/numeric.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/projection.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/reconstruct.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/robust.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/simple_pipeline.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/src/triangulation.cpp  
   creating: opencv_contrib-3.1.0/modules/sfm/test/
  inflating: opencv_contrib-3.1.0/modules/sfm/test/scene.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/scene.h  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/test_common.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/test_conditioning.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/test_fundamental.cpp  
 extracting: opencv_contrib-3.1.0/modules/sfm/test/test_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/test_numeric.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/test_precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/test_projection.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/test_reconstruct.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/test_robust.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/test_simple_pipeline.cpp  
  inflating: opencv_contrib-3.1.0/modules/sfm/test/test_triangulation.cpp  
   creating: opencv_contrib-3.1.0/modules/sfm/tutorials/
   creating: opencv_contrib-3.1.0/modules/sfm/tutorials/sfm_installation/
  inflating: opencv_contrib-3.1.0/modules/sfm/tutorials/sfm_installation/sfm_installation.markdown  
   creating: opencv_contrib-3.1.0/modules/sfm/tutorials/sfm_scene reconstruction/
  inflating: opencv_contrib-3.1.0/modules/sfm/tutorials/sfm_scene reconstruction/sfm_scene_reconstruction.markdown  
   creating: opencv_contrib-3.1.0/modules/sfm/tutorials/sfm_trajectory_estimation/
  inflating: opencv_contrib-3.1.0/modules/sfm/tutorials/sfm_trajectory_estimation/sfm_trajectory_estimation.markdown  
  inflating: opencv_contrib-3.1.0/modules/sfm/tutorials/table_of_content_sfm.markdown  
   creating: opencv_contrib-3.1.0/modules/stereo/
  inflating: opencv_contrib-3.1.0/modules/stereo/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/stereo/README.md  
   creating: opencv_contrib-3.1.0/modules/stereo/include/
   creating: opencv_contrib-3.1.0/modules/stereo/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/stereo/include/opencv2/stereo.hpp  
   creating: opencv_contrib-3.1.0/modules/stereo/include/opencv2/stereo/
  inflating: opencv_contrib-3.1.0/modules/stereo/include/opencv2/stereo/descriptor.hpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/include/opencv2/stereo/matching.hpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/include/opencv2/stereo/stereo.hpp  
   creating: opencv_contrib-3.1.0/modules/stereo/perf/
  inflating: opencv_contrib-3.1.0/modules/stereo/perf/perf_bm.cpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/perf/perf_descriptor.cpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/perf/perf_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/perf/perf_precomp.hpp  
   creating: opencv_contrib-3.1.0/modules/stereo/samples/
  inflating: opencv_contrib-3.1.0/modules/stereo/samples/sample.cpp  
   creating: opencv_contrib-3.1.0/modules/stereo/src/
  inflating: opencv_contrib-3.1.0/modules/stereo/src/descriptor.cpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/src/precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/src/stereo_binary_bm.cpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/src/stereo_binary_sgbm.cpp  
   creating: opencv_contrib-3.1.0/modules/stereo/test/
  inflating: opencv_contrib-3.1.0/modules/stereo/test/test_block_matching.cpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/test/test_descriptors.cpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/test/test_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/stereo/test/test_precomp.hpp  
   creating: opencv_contrib-3.1.0/modules/stereo/testdata/
  inflating: opencv_contrib-3.1.0/modules/stereo/testdata/groundtruth.bmp  
  inflating: opencv_contrib-3.1.0/modules/stereo/testdata/imL2.bmp  
  inflating: opencv_contrib-3.1.0/modules/stereo/testdata/imL2l.bmp  
  inflating: opencv_contrib-3.1.0/modules/stereo/testdata/imgKitty.bmp  
  inflating: opencv_contrib-3.1.0/modules/stereo/testdata/imgKittyl.bmp  
  inflating: opencv_contrib-3.1.0/modules/stereo/testdata/rezult0.bmp  
  inflating: opencv_contrib-3.1.0/modules/stereo/testdata/rezult0l.bmp  
   creating: opencv_contrib-3.1.0/modules/structured_light/
  inflating: opencv_contrib-3.1.0/modules/structured_light/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/structured_light/README.md  
   creating: opencv_contrib-3.1.0/modules/structured_light/doc/
   creating: opencv_contrib-3.1.0/modules/structured_light/doc/pics/
  inflating: opencv_contrib-3.1.0/modules/structured_light/doc/pics/cm_disparity.png  
  inflating: opencv_contrib-3.1.0/modules/structured_light/doc/pics/plane_viz.png  
  inflating: opencv_contrib-3.1.0/modules/structured_light/doc/pics/threshold_disp.png  
  inflating: opencv_contrib-3.1.0/modules/structured_light/doc/structured_light.bib  
   creating: opencv_contrib-3.1.0/modules/structured_light/include/
   creating: opencv_contrib-3.1.0/modules/structured_light/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/structured_light/include/opencv2/structured_light.hpp  
   creating: opencv_contrib-3.1.0/modules/structured_light/include/opencv2/structured_light/
  inflating: opencv_contrib-3.1.0/modules/structured_light/include/opencv2/structured_light/graycodepattern.hpp  
  inflating: opencv_contrib-3.1.0/modules/structured_light/include/opencv2/structured_light/structured_light.hpp  
   creating: opencv_contrib-3.1.0/modules/structured_light/samples/
  inflating: opencv_contrib-3.1.0/modules/structured_light/samples/cap_pattern.cpp  
  inflating: opencv_contrib-3.1.0/modules/structured_light/samples/pointcloud.cpp  
   creating: opencv_contrib-3.1.0/modules/structured_light/src/
  inflating: opencv_contrib-3.1.0/modules/structured_light/src/graycodepattern.cpp  
  inflating: opencv_contrib-3.1.0/modules/structured_light/src/precomp.hpp  
   creating: opencv_contrib-3.1.0/modules/structured_light/test/
  inflating: opencv_contrib-3.1.0/modules/structured_light/test/test_getProjPixel.cpp  
 extracting: opencv_contrib-3.1.0/modules/structured_light/test/test_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/structured_light/test/test_plane.cpp  
  inflating: opencv_contrib-3.1.0/modules/structured_light/test/test_precomp.hpp  
   creating: opencv_contrib-3.1.0/modules/structured_light/tutorials/
   creating: opencv_contrib-3.1.0/modules/structured_light/tutorials/capture_pattern/
  inflating: opencv_contrib-3.1.0/modules/structured_light/tutorials/capture_pattern/capture_pattern.markdown  
   creating: opencv_contrib-3.1.0/modules/structured_light/tutorials/decode_pattern/
  inflating: opencv_contrib-3.1.0/modules/structured_light/tutorials/decode_pattern/tutorial_decode_pattern.markdown  
  inflating: opencv_contrib-3.1.0/modules/structured_light/tutorials/structured_light.markdown  
   creating: opencv_contrib-3.1.0/modules/surface_matching/
  inflating: opencv_contrib-3.1.0/modules/surface_matching/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/PATENTS.txt  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/README.md  
   creating: opencv_contrib-3.1.0/modules/surface_matching/doc/
   creating: opencv_contrib-3.1.0/modules/surface_matching/doc/img/
  inflating: opencv_contrib-3.1.0/modules/surface_matching/doc/img/gsoc_forg_matches.jpg  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/doc/img/outline.jpg  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/doc/img/snapshot27.jpg  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/doc/surface_matching.bib  
   creating: opencv_contrib-3.1.0/modules/surface_matching/include/
   creating: opencv_contrib-3.1.0/modules/surface_matching/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/surface_matching/include/opencv2/surface_matching.hpp  
   creating: opencv_contrib-3.1.0/modules/surface_matching/include/opencv2/surface_matching/
  inflating: opencv_contrib-3.1.0/modules/surface_matching/include/opencv2/surface_matching/icp.hpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/include/opencv2/surface_matching/pose_3d.hpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/include/opencv2/surface_matching/ppf_helpers.hpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/include/opencv2/surface_matching/ppf_match_3d.hpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/include/opencv2/surface_matching/t_hash_int.hpp  
   creating: opencv_contrib-3.1.0/modules/surface_matching/samples/
   creating: opencv_contrib-3.1.0/modules/surface_matching/samples/data/
  inflating: opencv_contrib-3.1.0/modules/surface_matching/samples/data/parasaurolophus_6700.ply  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/samples/data/parasaurolophus_low_normals2.ply  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/samples/data/rs1_normals.ply  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/samples/data/rs22_proc2.ply  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/samples/ppf_load_match.cpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/samples/ppf_normal_computation.cpp  
   creating: opencv_contrib-3.1.0/modules/surface_matching/src/
  inflating: opencv_contrib-3.1.0/modules/surface_matching/src/c_utils.hpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/src/hash_murmur.hpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/src/hash_murmur64.hpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/src/hash_murmur86.hpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/src/icp.cpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/src/pose_3d.cpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/src/ppf_helpers.cpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/src/ppf_match_3d.cpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/src/precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/surface_matching/src/t_hash_int.cpp  
   creating: opencv_contrib-3.1.0/modules/text/
  inflating: opencv_contrib-3.1.0/modules/text/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/text/FindTesseract.cmake  
  inflating: opencv_contrib-3.1.0/modules/text/README.md  
   creating: opencv_contrib-3.1.0/modules/text/doc/
   creating: opencv_contrib-3.1.0/modules/text/doc/pics/
  inflating: opencv_contrib-3.1.0/modules/text/doc/pics/component_tree.png  
   creating: opencv_contrib-3.1.0/modules/text/include/
   creating: opencv_contrib-3.1.0/modules/text/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/text/include/opencv2/text.hpp  
   creating: opencv_contrib-3.1.0/modules/text/include/opencv2/text/
  inflating: opencv_contrib-3.1.0/modules/text/include/opencv2/text/erfilter.hpp  
  inflating: opencv_contrib-3.1.0/modules/text/include/opencv2/text/ocr.hpp  
   creating: opencv_contrib-3.1.0/modules/text/samples/
 extracting: opencv_contrib-3.1.0/modules/text/samples/OCRBeamSearch_CNN_model_data.xml.gz  
 extracting: opencv_contrib-3.1.0/modules/text/samples/OCRHMM_knn_model_data.xml.gz  
  inflating: opencv_contrib-3.1.0/modules/text/samples/OCRHMM_transitions_table.xml  
  inflating: opencv_contrib-3.1.0/modules/text/samples/character_recognition.cpp  
  inflating: opencv_contrib-3.1.0/modules/text/samples/cropped_word_recognition.cpp  
  inflating: opencv_contrib-3.1.0/modules/text/samples/end_to_end_recognition.cpp  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext01.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext02.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext03.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext04.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext05.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext06.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_char01.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_char02.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_char03.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_segmented_word01.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_segmented_word01_mask.png  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_segmented_word02.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_segmented_word02_mask.png  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_segmented_word03.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_segmented_word03_mask.png  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_segmented_word04.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_segmented_word04_mask.png  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_segmented_word05.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_segmented_word05_mask.png  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_word01.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_word02.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_word03.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/scenetext_word04.jpg  
  inflating: opencv_contrib-3.1.0/modules/text/samples/segmented_word_recognition.cpp  
  inflating: opencv_contrib-3.1.0/modules/text/samples/textdetection.cpp  
  inflating: opencv_contrib-3.1.0/modules/text/samples/trained_classifierNM1.xml  
  inflating: opencv_contrib-3.1.0/modules/text/samples/trained_classifierNM2.xml  
  inflating: opencv_contrib-3.1.0/modules/text/samples/trained_classifier_erGrouping.xml  
  inflating: opencv_contrib-3.1.0/modules/text/samples/webcam_demo.cpp  
   creating: opencv_contrib-3.1.0/modules/text/src/
  inflating: opencv_contrib-3.1.0/modules/text/src/erfilter.cpp  
  inflating: opencv_contrib-3.1.0/modules/text/src/ocr_beamsearch_decoder.cpp  
  inflating: opencv_contrib-3.1.0/modules/text/src/ocr_hmm_decoder.cpp  
  inflating: opencv_contrib-3.1.0/modules/text/src/ocr_tesseract.cpp  
  inflating: opencv_contrib-3.1.0/modules/text/src/precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/text/text_config.hpp.in  
   creating: opencv_contrib-3.1.0/modules/tracking/
  inflating: opencv_contrib-3.1.0/modules/tracking/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/tracking/README.md  
   creating: opencv_contrib-3.1.0/modules/tracking/doc/
  inflating: opencv_contrib-3.1.0/modules/tracking/doc/[Tutorial] Adding new Tracker Method for dummies  
  inflating: opencv_contrib-3.1.0/modules/tracking/doc/diagrams.markdown  
  inflating: opencv_contrib-3.1.0/modules/tracking/doc/tracking.bib  
   creating: opencv_contrib-3.1.0/modules/tracking/include/
   creating: opencv_contrib-3.1.0/modules/tracking/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/tracking/include/opencv2/tracking.hpp  
   creating: opencv_contrib-3.1.0/modules/tracking/include/opencv2/tracking/
  inflating: opencv_contrib-3.1.0/modules/tracking/include/opencv2/tracking/feature.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/include/opencv2/tracking/kalman_filters.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/include/opencv2/tracking/onlineBoosting.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/include/opencv2/tracking/onlineMIL.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/include/opencv2/tracking/tldDataset.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/include/opencv2/tracking/tracker.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/include/opencv2/tracking/tracking.hpp  
   creating: opencv_contrib-3.1.0/modules/tracking/perf/
  inflating: opencv_contrib-3.1.0/modules/tracking/perf/perf_Tracker.cpp  
 extracting: opencv_contrib-3.1.0/modules/tracking/perf/perf_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/perf/perf_precomp.hpp  
   creating: opencv_contrib-3.1.0/modules/tracking/samples/
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/benchmark.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/kcf.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/multiTracker_dataset.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/multitracker.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/multitracker.py  
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/tracker.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/tracker.py  
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/tracker_dataset.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/tutorial_customizing_cn_tracker.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/tutorial_introduction_to_tracker.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/samples/tutorial_multitracker.cpp  
   creating: opencv_contrib-3.1.0/modules/tracking/src/
  inflating: opencv_contrib-3.1.0/modules/tracking/src/PFSolver.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/TrackingFunctionPF.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/augmented_unscented_kalman.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/feature.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/featureColorName.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/multiTracker.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/multiTracker.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/multiTracker_alt.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/onlineBoosting.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/onlineMIL.cpp  
   creating: opencv_contrib-3.1.0/modules/tracking/src/opencl/
  inflating: opencv_contrib-3.1.0/modules/tracking/src/opencl/tldDetector.cl  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/roiSelector.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldDataset.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldDetector.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldDetector.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldEnsembleClassifier.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldEnsembleClassifier.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldModel.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldModel.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldTracker.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldTracker.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldUtils.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tldUtils.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/tracker.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerBoosting.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerBoostingModel.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerBoostingModel.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerFeature.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerFeatureSet.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerKCF.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerMIL.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerMILModel.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerMILModel.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerMedianFlow.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerModel.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerSampler.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerSamplerAlgorithm.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/trackerStateEstimator.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/src/unscented_kalman.cpp  
   creating: opencv_contrib-3.1.0/modules/tracking/test/
  inflating: opencv_contrib-3.1.0/modules/tracking/test/test_aukf.cpp  
 extracting: opencv_contrib-3.1.0/modules/tracking/test/test_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/test/test_precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/test/test_trackerOPE.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/test/test_trackerSRE.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/test/test_trackerTRE.cpp  
  inflating: opencv_contrib-3.1.0/modules/tracking/test/test_ukf.cpp  
   creating: opencv_contrib-3.1.0/modules/tracking/tutorials/
  inflating: opencv_contrib-3.1.0/modules/tracking/tutorials/tutorial_customizing_cn_tracker.markdown  
  inflating: opencv_contrib-3.1.0/modules/tracking/tutorials/tutorial_introduction_to_tracker.markdown  
  inflating: opencv_contrib-3.1.0/modules/tracking/tutorials/tutorial_multitracker.markdown  
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/README.md  
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/doc/
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/doc/xfeatures2d.bib  
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/include/
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/include/opencv2/xfeatures2d.hpp  
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/include/opencv2/xfeatures2d/
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/include/opencv2/xfeatures2d/cuda.hpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/include/opencv2/xfeatures2d/nonfree.hpp  
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/perf/
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/perf/perf_daisy.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/perf/perf_latch.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/perf/perf_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/perf/perf_msd.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/perf/perf_precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/perf/perf_surf.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/perf/perf_surf.cuda.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/perf/perf_surf.ocl.cpp  
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/samples/
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/samples/bagofwords_classification.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/samples/shape_transformation.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/samples/surf_matcher.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/samples/video_homography.cpp  
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/src/
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/brief.cpp  
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/src/cuda/
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/cuda/surf.cu  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/daisy.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/freak.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/generated_16.i  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/generated_32.i  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/generated_64.i  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/latch.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/lucid.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/msd.cpp  
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/src/opencl/
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/opencl/surf.cl  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/sift.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/stardetector.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/surf.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/surf.cuda.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/surf.hpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/surf.ocl.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/src/xfeatures2d_init.cpp  
   creating: opencv_contrib-3.1.0/modules/xfeatures2d/test/
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/test/test_detectors.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/test/test_features2d.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/test/test_keypoints.cpp  
 extracting: opencv_contrib-3.1.0/modules/xfeatures2d/test/test_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/test/test_precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/test/test_rotation_and_scale_invariance.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/test/test_surf.cuda.cpp  
  inflating: opencv_contrib-3.1.0/modules/xfeatures2d/test/test_surf.ocl.cpp  
   creating: opencv_contrib-3.1.0/modules/ximgproc/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/README.md  
   creating: opencv_contrib-3.1.0/modules/ximgproc/doc/
   creating: opencv_contrib-3.1.0/modules/ximgproc/doc/pics/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/doc/pics/slic-slico-kermit.png  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/doc/pics/superpixels_blocks.png  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/doc/pics/superpixels_blocks2.png  
 extracting: opencv_contrib-3.1.0/modules/ximgproc/doc/pics/superpixels_demo.png  
 extracting: opencv_contrib-3.1.0/modules/ximgproc/doc/pics/superpixels_lsc.png  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/doc/ximgproc.bib  
   creating: opencv_contrib-3.1.0/modules/ximgproc/include/
   creating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc.hpp  
   creating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/disparity_filter.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/edge_filter.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/estimated_covariance.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/fast_hough_transform.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/lsc.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/seeds.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/segmentation.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/slic.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/sparse_match_interpolator.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/include/opencv2/ximgproc/structured_edge_detection.hpp  
   creating: opencv_contrib-3.1.0/modules/ximgproc/perf/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/perf/perf_adaptive_manifold.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/perf/perf_disparity_wls_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/perf/perf_domain_transform.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/perf/perf_fast_hough_transform.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/perf/perf_fgs_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/perf/perf_guided_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/perf/perf_l0_smooth.cpp  
 extracting: opencv_contrib-3.1.0/modules/ximgproc/perf/perf_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/perf/perf_precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/perf/perf_rolling_guidance_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/perf/pref_joint_bilateral_filter.cpp  
   creating: opencv_contrib-3.1.0/modules/ximgproc/samples/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/CMakeLists.txt  
   creating: opencv_contrib-3.1.0/modules/ximgproc/samples/cpp/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/cpp/graphsegmentation_demo.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/disparity_filtering.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/fast_hough_transform.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/findredlinedpolygonfromgooglemaps.py  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/live_demo.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/niblack_thresholding.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/polygonstanfordoutput.png  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/seeds.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/stanford.png  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/samples/structured_edge_detection.cpp  
   creating: opencv_contrib-3.1.0/modules/ximgproc/src/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/adaptive_manifold_filter_n.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/advanced_types.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/disparity_filters.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/domain_transform.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/dtfilter_cpu.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/dtfilter_cpu.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/dtfilter_cpu.inl.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/edgeaware_filters_common.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/edgeaware_filters_common.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/estimated_covariance.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/fast_hough_transform.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/fgs_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/graphsegmentation.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/guided_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/joint_bilateral_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/l0_smooth.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/lsc.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/niblack_thresholding.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/rolling_guidance_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/seeds.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/slic.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/sparse_match_interpolators.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/src/structured_edge_detection.cpp  
   creating: opencv_contrib-3.1.0/modules/ximgproc/test/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_adaptive_manifold.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_adaptive_manifold_ref_impl.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_disparity_wls_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_domain_transform.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_fast_hough_transform.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_fgs_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_guided_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_joint_bilateral_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_l0_smooth.cpp  
 extracting: opencv_contrib-3.1.0/modules/ximgproc/test/test_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_rolling_guidance_filter.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_sparse_match_interpolator.cpp  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/test/test_structured_edge_detection.cpp  
   creating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/disparity_filtering.markdown  
   creating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/01.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/02.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/03.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/04.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/05.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/06.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/07.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/08.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/09.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/10.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/11.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/12.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/ambush_5_bm.png  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/ambush_5_bm_with_filter.png  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/ambush_5_left.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/images/ambush_5_right.jpg  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/prediction.markdown  
   creating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/scripts/
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/scripts/modelConvert.m  
  inflating: opencv_contrib-3.1.0/modules/ximgproc/tutorials/training.markdown  
   creating: opencv_contrib-3.1.0/modules/xobjdetect/
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/README.md  
   creating: opencv_contrib-3.1.0/modules/xobjdetect/doc/
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/doc/xobjdetect.bib  
   creating: opencv_contrib-3.1.0/modules/xobjdetect/include/
   creating: opencv_contrib-3.1.0/modules/xobjdetect/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/include/opencv2/xobjdetect.hpp  
   creating: opencv_contrib-3.1.0/modules/xobjdetect/src/
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/src/cascadeclassifier.h  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/src/feature_evaluator.cpp  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/src/feature_evaluator.hpp  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/src/lbpfeatures.cpp  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/src/lbpfeatures.h  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/src/precomp.hpp  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/src/waldboost.cpp  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/src/waldboost.hpp  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/src/wbdetector.cpp  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/src/wbdetector.hpp  
   creating: opencv_contrib-3.1.0/modules/xobjdetect/tools/
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/tools/CMakeLists.txt  
   creating: opencv_contrib-3.1.0/modules/xobjdetect/tools/waldboost_detector/
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/tools/waldboost_detector/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/xobjdetect/tools/waldboost_detector/waldboost_detector.cpp  
   creating: opencv_contrib-3.1.0/modules/xphoto/
  inflating: opencv_contrib-3.1.0/modules/xphoto/CMakeLists.txt  
  inflating: opencv_contrib-3.1.0/modules/xphoto/README.md  
   creating: opencv_contrib-3.1.0/modules/xphoto/doc/
  inflating: opencv_contrib-3.1.0/modules/xphoto/doc/xphoto.bib  
   creating: opencv_contrib-3.1.0/modules/xphoto/include/
   creating: opencv_contrib-3.1.0/modules/xphoto/include/opencv2/
  inflating: opencv_contrib-3.1.0/modules/xphoto/include/opencv2/xphoto.hpp  
   creating: opencv_contrib-3.1.0/modules/xphoto/include/opencv2/xphoto/
  inflating: opencv_contrib-3.1.0/modules/xphoto/include/opencv2/xphoto/dct_image_denoising.hpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/include/opencv2/xphoto/inpainting.hpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/include/opencv2/xphoto/white_balance.hpp  
   creating: opencv_contrib-3.1.0/modules/xphoto/perf/
  inflating: opencv_contrib-3.1.0/modules/xphoto/perf/perf_grayworld.cpp  
 extracting: opencv_contrib-3.1.0/modules/xphoto/perf/perf_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/perf/perf_precomp.hpp  
   creating: opencv_contrib-3.1.0/modules/xphoto/samples/
  inflating: opencv_contrib-3.1.0/modules/xphoto/samples/dct_image_denoising.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/samples/grayworld_color_balance.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/samples/inpainting.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/samples/simple_color_balance.cpp  
   creating: opencv_contrib-3.1.0/modules/xphoto/src/
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/advanced_types.hpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/annf.hpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/blending.hpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/dct_image_denoising.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/gcgraph.hpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/grayworld_white_balance.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/inpainting.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/norm2.hpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/photomontage.hpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/simple_color_balance.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/src/whs.hpp  
   creating: opencv_contrib-3.1.0/modules/xphoto/test/
  inflating: opencv_contrib-3.1.0/modules/xphoto/test/dct_image_denoising.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/test/simple_color_balance.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/test/test_grayworld.cpp  
 extracting: opencv_contrib-3.1.0/modules/xphoto/test/test_main.cpp  
  inflating: opencv_contrib-3.1.0/modules/xphoto/test/test_precomp.hpp  
   creating: opencv_contrib-3.1.0/samples/
   creating: opencv_contrib-3.1.0/samples/python2/
  inflating: opencv_contrib-3.1.0/samples/python2/common.py  
  inflating: opencv_contrib-3.1.0/samples/python2/seeds.py  
  inflating: opencv_contrib-3.1.0/samples/python2/video.py  
pi@pi:~ $ wget https://bootstrap.pypa.io/get-pip.py
--2020-04-21 08:23:54--  https://bootstrap.pypa.io/get-pip.py
Resolving bootstrap.pypa.io (bootstrap.pypa.io)... 151.101.8.175, 2a04:4e42:2::175
Connecting to bootstrap.pypa.io (bootstrap.pypa.io)|151.101.8.175|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1807342 (1.7M) [text/x-python]
Saving to: ‘get-pip.py’

get-pip.py          100%[===================>]   1.72M  1.42MB/s    in 1.2s    

2020-04-21 08:23:56 (1.42 MB/s) - ‘get-pip.py’ saved [1807342/1807342]

pi@pi:~ $ sudo python get-pip.py
DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Collecting pip
  Downloading pip-20.0.2-py2.py3-none-any.whl (1.4 MB)
     |████████████████████████████████| 1.4 MB 520 kB/s 
Installing collected packages: pip
  Attempting uninstall: pip
    Found existing installation: pip 18.1
    Uninstalling pip-18.1:
      Successfully uninstalled pip-18.1
Successfully installed pip-20.0.2
pi@pi:~ $
 

Masih on progress ya