Monday, April 27, 2020

Cara membuat koneksi SQLite3 dengan PHP dan contohnya

Anda pasti pernh menemukan satu file dengan berekstensi .db belakangan ini, itu adalah database SQLite. SQLite3 merupakan salah satu dari banyaknya database (DBMS) yang paling mudah digunakan karena berbasis file. Bentuk Query-nya pun masih sama dengan sintaks SQL dan bersifat relasional. Tidak hanya di Android, SQLite3 pun dapat digunakan oleh PHP.

Sebelum menggunakan SQLite, jika menggunakan localhost, maka tentunya harus ada konfigurasi Apache dalam XAMPP, antara lain:

Ubah dan uncomment atau hilangkan tanda komentar pada file php.ini dalam folder php/php.ini:


...
extension=php_pdo_sqlite.dll
...
extension=php_sqlite3.dll
...
[sqlite3]
sqlite3.extension_dir =
...


Setelah itu restart Apache dengan cara Stop dan Start kembali. Jika hal ini tidak digunakan, maka saat load class SQLite akan terdapat tampilan berikut:

Fatal error: Class 'SQLite3' not found in F:\xampp\htdocs\sqlite\open-sqlite3.php on line 3

Berikut adalah cara membuat dan mengakses sebuah database SQLite3 di PHP:


<?php
$db = new SQLite3('local.db');

if(!$db) {
  echo $db->lastErrorMsg();
} else {
  echo "Open database success...\n";
}

echo realpath("local.db");

echo "<br/><br/>";

// CARA 1
 $q = $db->query('SELECT *, COUNT(*) as count FROM face_info');

 while ($r = $q->fetchArray()) {
     //var_dump($r);
     $baris_kedua[] = $r;
 }
 // Gunakan count untuk mengetahui num_rows atau jumlah baris
 echo '<br/><br/>Jumlah baris tabel face_info adalah '.$q->fetchArray()[7].' atau '.$baris_kedua[0]['count'].'<br/>';


// CARA 2
$sql =<<<EOF
 SELECT * FROM face_info;
EOF;

 $query = $db->query($sql);
 if(!$query){
   echo $db->lastErrorMsg();
 } else {
     while ($row = $query->fetchArray()) {
         //print_r($row);
         $line_row[] = $row;
     }
 }
 // Menampilkan satu data ID
 echo '<br/><br/>Selanjutnya CARA 2, ID kedua adalah '.$line_row[1]['dwFaceId'].'<br/>';


// CARA 3, hanya mengambil satu baris data (single)
$sql1 =<<<EOF
      SELECT * FROM face_info WHERE dwFaceId="1";
EOF;

 $query1 = $db->querySingle($sql1, true);
 if(!$query1){
   echo $db->lastErrorMsg();  // Jaga-jaga kalau tidak ada data
 } else {
     //print_r($query1);
  // Menampilkan satu data ID
  echo '<br/><br/>Selanjutnya CARA 3, ID pertama adalah '.$query1['dwFaceId'].'<br/>';
 }

// Contoh mengambil gambar tipe blob dari data CARA 1
echo '<br/>CARA 1<br/><img src="data:image/png;base64,' . base64_encode( $baris_kedua[0]['FaceMB'] ) . '" width="100"/>';
// Contoh mengambil gambar tipe blob dari data CARA 3
echo '<br/>CARA 3<br/><img src="data:image/png;base64,' . base64_encode( $query1['FaceMB'] ) . '" width="100"/><br/>';

// Contoh simpan gambar ke dalam folder
echo "<br/><br/>Contoh simpan gambar ke dalam folder<br/>";
    $path = "./images/";
    // option 1
 $file = fopen($path.$baris_kedua[0][1].".jpeg","w") or die("Unable to open file!");
 echo "File name: ".$path.$baris_kedua[0][1].".jpeg";
 fwrite($file, base64_decode($baris_kedua[0]['FaceMB']));
 fclose($file);

 // option 2 (sederhana)
 // file_put_contents($path."/".$name, base64_decode($image));

?>


Jika menggunakan XAMPP, maka pastikan file .db masih dalam satu folder yang sama di htdocs. Apabila dijalankan pada browser dengan akses localhost, maka terlihat keterangan berikut:

Open database success...


Maka silahkan gunakan kode SQL seperti biasa untuk mengakses file local.db secara CRUD. Jika ingin mengaksesnya layaknya phpmyadmin silahkan gunakan DB Browser for SQLite. Contact us kalau ingin contoh file local.db

Sunday, April 26, 2020

Apa yang harus dilakukan saat upload web aplikasi pada Server dengan menggunakan CodeIgniter (CI)

Dalam membuat sebuah sistem informasi dibutuhkan skill dan logika yang mumpuni. Setidaknya memahami dalam setiap masalah yang ada seperti dalam aplikasi berbasis web dengan CodeIgniter. Pernahkah anda memiliki hasil tampilan seperti ini:




A PHP Error was encountered

Severity: Warning
Message: is_dir(): open_basedir restriction in effect. File(/opt/alt/php72/var/lib/php/session) is not within the allowed path(s): (/home/webiotid/:/tmp:/var/tmp:/opt/alt/php71/usr/share/pear/:/dev/urandom:/usr/local/lib/php/:/usr/local/php71/lib/php/)
Filename: drivers/Session_files_driver.php
Line Number: 134
Backtrace:
File: /home/webiotid/domains/webiot.id/public_html/link/application/controllers/Main.php
Line: 8
Function: __construct
File: /home/webiotid/domains/webiot.id/public_html/link/index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Warning
Message: mkdir(): open_basedir restriction in effect. File(/opt/alt/php72/var/lib/php/session) is not within the allowed path(s): (/home/webiotid/:/tmp:/var/tmp:/opt/alt/php71/usr/share/pear/:/dev/urandom:/usr/local/lib/php/:/usr/local/php71/lib/php/)
Filename: drivers/Session_files_driver.php
Line Number: 136
Backtrace:
File: /home/webiotid/domains/webiot.id/public_html/link/application/controllers/Main.php
Line: 8
Function: __construct
File: /home/webiotid/domains/webiot.id/public_html/link/index.php
Line: 315
Function: require_once

An uncaught Exception was encountered

Type: Exception
Message: Session: Configured save path '/opt/alt/php72/var/lib/php/session' is not a directory, doesn't exist or cannot be created.
Filename: /home/webiotid/domains/webiot.id/public_html/link/system/libraries/Session/drivers/Session_files_driver.php
Line Number: 138
Backtrace:
File: /home/webiotid/domains/webiot.id/public_html/link/application/controllers/Main.php
Line: 8
Function: __construct
File: /home/webiotid/domains/webiot.id/public_html/link/index.php
Line: 315
Function: require_once

Lalu bagaimana cara mengatasi masalah ini,

Bagaimana cara untuk membedakan CodeIgneter atau CI di locahost dan server atau hosting,

Jika ada masalah seperi di atas, maka lakukan perubahan Config pada Folder Application/config/config.php.
Jika menggunakan localhost, maka cari dan gunakan kode berikut:



$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = NULL;
//$config['sess_save_path'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;


Jika menggunakan server atau hosting, maka cari dan gunakan kode berikut:



$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
//$config['sess_save_path'] = NULL;
$config['sess_save_path'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;




Masih banyak masalah lainnya. Seperti

A PHP Error was encountered

Severity: Runtime Notice
Message: Only variables should be passed by reference
Filename: controllers/Main.php
Line Number: 58
Backtrace:
File: F:\xampp\htdocs\yourApp\application\controllers\Main.php
Line: 58
Function: _error_handler
File: F:\xampp\htdocs\yourApp\index.php
Line: 315
Function: require_once

Fatal error: Maximum execution time of 30 seconds exceeded in F:\xampp\htdocs\yourApp\system\database\drivers\mysqli\mysqli_driver.php on line 305

A PHP Error was encountered

Severity: Error
Message: Maximum execution time of 30 seconds exceeded
Filename: mysqli/mysqli_driver.php
Line Number: 305
Backtrace:


Pemecahan masalahnya adalah sebagai berikut:



<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Main extends CI_Controller
{
 function __construct()
 {
     parent::__construct();
     setlocale(LC_TIME, "");
.................................................
         ini_set('max_execution_time', 0); 
         ini_set('memory_limit','2048M');
 }



Kode ini ditambahkan pada Controller yang ingin diberikan tambahan waktu upload file
         ini_set('max_execution_time', 0);
        ini_set('memory_limit','2048M');


Kesalahan lain:


Warning: Declaration of ActiveRecord\DateTime::setTime($hour, $minute, $second = NULL) should be compatible with DateTime::setTime($hour, $minute, $second = NULL, $microseconds = NULL) in F:\xampp7\htdocs\project\vendor\php-activerecord\php-activerecord\lib\DateTime.php on line 139

Pemecahan masalah:
ganti file dengan https://github.com/jpfuentes2/php-activerecord/blob/master/lib/DateTime.php
hilangkan  implements DateTimeInterface pada baris 36 yaitu:
class DateTime extends \DateTime

Warning: Class 'Former\Facades\Former' not found in F:\xampp7\htdocs\project\application\config\config.php on line 85

A PHP Error was encountered

Severity: 8192
Message: implode(): Passing glue string after array is deprecated. Swap the parameters
Filename: php-activerecord/ActiveRecord.php
Line Number: 41
Backtrace:
File: F:\xampp7\htdocs\project\vendor\php-activerecord\php-activerecord\ActiveRecord.php
Line: 41
Function: implode
File: F:\xampp7\htdocs\project\application\config\config.php
Line: 85
Function: class_alias
File: F:\xampp7\htdocs\project\index.php
Line: 283
Function: require_once

A PHP Error was encountered

Severity: 8192
Message: implode(): Passing glue string after array is deprecated. Swap the parameters
Filename: php-activerecord/ActiveRecord.php
Line Number: 41
Backtrace:
File: F:\xampp7\htdocs\project\vendor\php-activerecord\php-activerecord\ActiveRecord.php
Line: 41
Function: implode
File: F:\xampp7\htdocs\project\vendor\anahkiasen\former\src\Former\Facades\Former.php
Line: 10
Function: spl_autoload_call
File: F:\xampp7\htdocs\project\vendor\composer\ClassLoader.php
Line: 378
Function: include
File: F:\xampp7\htdocs\project\vendor\composer\ClassLoader.php
Line: 270
Function: Composer\Autoload\includeFile
File: F:\xampp7\htdocs\project\application\config\config.php
Line: 85
Function: class_alias
File: F:\xampp7\htdocs\project\index.php
Line: 283
Function: require_once

A PHP Error was encountered

Severity: 8192
Message: implode(): Passing glue string after array is deprecated. Swap the parameters
Filename: php-activerecord/ActiveRecord.php
Line Number: 41
Backtrace:
File: F:\xampp7\htdocs\project\vendor\php-activerecord\php-activerecord\ActiveRecord.php
Line: 41
Function: implode
File: F:\xampp7\htdocs\project\application\core\MY_Loader.php
Line: 56
Function: spl_autoload_call
File: F:\xampp7\htdocs\project\index.php
Line: 283
Function: require_once

A PHP Error was encountered

Severity: Warning
Message: Use of undefined constant MCRYPT_RIJNDAEL_192 - assumed 'MCRYPT_RIJNDAEL_192' (this will throw an Error in a future version of PHP)
Filename: core/MY_Loader.php
Line Number: 56
Backtrace:
File: F:\xampp7\htdocs\project\application\core\MY_Loader.php
Line: 56
Function: _exception_handler
File: F:\xampp7\htdocs\project\index.php
Line: 283
Function: require_once

A PHP Error was encountered

Severity: Warning
Message: Use of undefined constant MCRYPT_MODE_CFB - assumed 'MCRYPT_MODE_CFB' (this will throw an Error in a future version of PHP)
Filename: core/MY_Loader.php
Line Number: 56
Backtrace:
File: F:\xampp7\htdocs\project\application\core\MY_Loader.php
Line: 56
Function: _exception_handler
File: F:\xampp7\htdocs\project\index.php
Line: 283
Function: require_once

Fatal error: Uncaught Error: Call to undefined function PHPEncryptData\mcrypt_get_key_size() in F:\xampp7\htdocs\project\vendor\archwisp\php-encrypt-data\Simple.php:111 Stack trace: #0 F:\xampp7\htdocs\project\vendor\archwisp\php-encrypt-data\Simple.php(33): PHPEncryptData\Simple->_getKeySize() #1 F:\xampp7\htdocs\project\application\core\MY_Loader.php(58): PHPEncryptData\Simple->__construct('wpOxcuvJLA4Z4aX...', 'YeYcxVpY/ug6zwY...') #2 F:\xampp7\htdocs\project\system\core\Common.php(186): MY_Loader->__construct() #3 F:\xampp7\htdocs\project\system\core\Controller.php(67): load_class('Loader', 'core') #4 F:\xampp7\htdocs\project\system\core\CodeIgniter.php(357): CI_Controller->__construct() #5 F:\xampp7\htdocs\project\index.php(283): require_once('F:\\xampp7\\htdoc...') #6 {main} thrown in F:\xampp7\htdocs\project\vendor\archwisp\php-encrypt-data\Simple.php on line 111

A PHP Error was encountered

Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at F:\xampp7\htdocs\project\system\core\Exceptions.php:211)
Filename: core/Common.php
Line Number: 551
Backtrace:

A PHP Error was encountered

Severity: Error
Message: Uncaught Error: Call to undefined function PHPEncryptData\mcrypt_get_key_size() in F:\xampp7\htdocs\project\vendor\archwisp\php-encrypt-data\Simple.php:111 Stack trace: #0 F:\xampp7\htdocs\project\vendor\archwisp\php-encrypt-data\Simple.php(33): PHPEncryptData\Simple->_getKeySize() #1 F:\xampp7\htdocs\project\application\core\MY_Loader.php(58): PHPEncryptData\Simple->__construct('wpOxcuvJLA4Z4aX...', 'YeYcxVpY/ug6zwY...') #2 F:\xampp7\htdocs\project\system\core\Common.php(186): MY_Loader->__construct() #3 F:\xampp7\htdocs\project\system\core\Controller.php(67): load_class('Loader', 'core') #4 F:\xampp7\htdocs\project\system\core\CodeIgniter.php(357): CI_Controller->__construct() #5 F:\xampp7\htdocs\project\index.php(283): require_once('F:\\xampp7\\htdoc...') #6 {main} thrown
Filename: php-encrypt-data/Simple.php
Line Number: 111
Backtrace:



set_userdata codeigniter not working
Codeigniter $this->session->set_userdata() not working

In CodeIgniter 3.x if you just upgraded to PHP version 7.x, go to system/libraries/Session/session.php at line 281 and replace or give comment for this line "//":

ini_set('session.name', $params['cookie_name']); 

change it with:

ini_set('session.id', $params['cookie_name']);



how to enable error log in codeigniter
/application/config/config.php

$config['log_threshold'] = 1



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