keras-team / autokeras

AutoML library for deep learning
http://autokeras.com/
Apache License 2.0
9.13k stars 1.4k forks source link

Tests Failed #699

Closed Lay4U closed 5 years ago

Lay4U commented 5 years ago

when I run test_image.py then

Testing started at 4:06 AM ...
/home/lay/autokeras/ak/bin/python /home/lay/pycharm-community-2019.1.3/helpers/pycharm/_jb_pytest_runner.py --path /home/lay/autokeras/tests/test_image.py
Launching pytest with arguments /home/lay/autokeras/tests/test_image.py in /home/lay/autokeras/tests
============================= test session starts ==============================
platform linux -- Python 3.6.8, pytest-5.0.1, py-1.8.0, pluggy-0.12.0 -- /home/lay/autokeras/ak/bin/python
cachedir: .pytest_cache
rootdir: /home/lay/autokeras, inifile: pytest.ini
plugins: cov-2.7.1, forked-1.0.2, pep8-1.0.6, xdist-1.29.0
gw0 I / gw1 I
[gw0] linux Python 3.6.8 cwd: /home/lay/autokeras/tests
[gw1] linux Python 3.6.8 cwd: /home/lay/autokeras/tests
[gw0] Python 3.6.8 (default, Jan 14 2019, 11:02:34)  -- [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
[gw1] Python 3.6.8 (default, Jan 14 2019, 11:02:34)  -- [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
gw0 [2] / gw1 [2]

scheduling tests via LoadScheduling

test_image.py::test_image_classifier 
test_image.py::test_image_regressor 
[gw0] [ 50%] FAILED test_image.py::test_image_classifier 2019-07-09 04:06:16.650983: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
2019-07-09 04:06:16.670016: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 3501000000 Hz
2019-07-09 04:06:16.671382: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x2acb3a0 executing computations on platform Host. Devices:
2019-07-09 04:06:16.671871: I tensorflow/compiler/xla/service/service.cc:175]   StreamExecutor device (0): <undefined>, <undefined>

tests/test_image.py:10 (test_image_classifier)
tmp_dir = local('/tmp/pytest-of-lay/pytest-5/popen-gw0/test_image0')

    def test_image_classifier(tmp_dir):
        x_train = np.random.rand(100, 32, 32, 3)
        y_train = np.random.randint(0, 10, 100)
        clf = ak.ImageClassifier(directory=tmp_dir, max_trials=2)
>       clf.fit(x_train, y_train, epochs=2, validation_split=0.2)

test_image.py:15: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../autokeras/auto/auto_model.py:251: in fit
    directory=self.directory)
../ak/lib/python3.6/site-packages/kerastuner/tuners/randomsearch.py:122: in __init__
    **kwargs)
../ak/lib/python3.6/site-packages/kerastuner/engine/tuner.py:196: in __init__
    export_dir=os.path.join(self.directory, 'export')
../ak/lib/python3.6/site-packages/kerastuner/abstractions/host.py:49: in __init__
    self.cpu_frequency = psutil.cpu_freq()
../ak/lib/python3.6/site-packages/psutil/__init__.py:1985: in cpu_freq
    ret = _psplatform.cpu_freq()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def cpu_freq():
        """Return frequency metrics for all CPUs.
        Contrarily to other OSes, Linux updates these values in
        real-time.
        """
        def get_path(num):
            for p in ("/sys/devices/system/cpu/cpufreq/policy%s" % num,
                      "/sys/devices/system/cpu/cpu%s/cpufreq" % num):
                if os.path.exists(p):
                    return p

        ret = []
        for n in range(cpu_count_logical()):
            path = get_path(n)
            if not path:
                continue

            pjoin = os.path.join
            curr = cat(pjoin(path, "scaling_cur_freq"), fallback=None)
            if curr is None:
                # Likely an old RedHat, see:
                # https://github.com/giampaolo/psutil/issues/1071
                curr = cat(pjoin(path, "cpuinfo_cur_freq"), fallback=None)
                if curr is None:
                    raise NotImplementedError(
>                       "can't find current frequency file")
E                   NotImplementedError: can't find current frequency file

../ak/lib/python3.6/site-packages/psutil/_pslinux.py:698: NotImplementedError

[gw1] [100%] FAILED test_image.py::test_image_regressor 2019-07-09 04:06:16.654289: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
2019-07-09 04:06:16.673461: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 3501000000 Hz
2019-07-09 04:06:16.674197: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x2e623a0 executing computations on platform Host. Devices:
2019-07-09 04:06:16.674361: I tensorflow/compiler/xla/service/service.cc:175]   StreamExecutor device (0): <undefined>, <undefined>

tests/test_image.py:18 (test_image_regressor)
tmp_dir = local('/tmp/pytest-of-lay/pytest-5/popen-gw1/test_image0')

    def test_image_regressor(tmp_dir):
        x_train = np.random.rand(100, 32, 32, 3)
        y_train = np.random.rand(100)
        clf = ak.ImageRegressor(directory=tmp_dir, max_trials=2)
>       clf.fit(x_train, y_train, epochs=2, validation_split=0.2)

test_image.py:23: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../autokeras/auto/auto_model.py:251: in fit
    directory=self.directory)
../ak/lib/python3.6/site-packages/kerastuner/tuners/randomsearch.py:122: in __init__
    **kwargs)
../ak/lib/python3.6/site-packages/kerastuner/engine/tuner.py:196: in __init__
    export_dir=os.path.join(self.directory, 'export')
../ak/lib/python3.6/site-packages/kerastuner/abstractions/host.py:49: in __init__
    self.cpu_frequency = psutil.cpu_freq()
../ak/lib/python3.6/site-packages/psutil/__init__.py:1985: in cpu_freq
    ret = _psplatform.cpu_freq()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def cpu_freq():
        """Return frequency metrics for all CPUs.
        Contrarily to other OSes, Linux updates these values in
        real-time.
        """
        def get_path(num):
            for p in ("/sys/devices/system/cpu/cpufreq/policy%s" % num,
                      "/sys/devices/system/cpu/cpu%s/cpufreq" % num):
                if os.path.exists(p):
                    return p

        ret = []
        for n in range(cpu_count_logical()):
            path = get_path(n)
            if not path:
                continue

            pjoin = os.path.join
            curr = cat(pjoin(path, "scaling_cur_freq"), fallback=None)
            if curr is None:
                # Likely an old RedHat, see:
                # https://github.com/giampaolo/psutil/issues/1071
                curr = cat(pjoin(path, "cpuinfo_cur_freq"), fallback=None)
                if curr is None:
                    raise NotImplementedError(
>                       "can't find current frequency file")
E                   NotImplementedError: can't find current frequency file

../ak/lib/python3.6/site-packages/psutil/_pslinux.py:698: NotImplementedError

Assertion failed

=================================== FAILURES ===================================
____________________________ test_image_classifier _____________________________
[gw0] linux -- Python 3.6.8 /home/lay/autokeras/ak/bin/python

tmp_dir = local('/tmp/pytest-of-lay/pytest-5/popen-gw0/test_image0')

    def test_image_classifier(tmp_dir):
        x_train = np.random.rand(100, 32, 32, 3)
        y_train = np.random.randint(0, 10, 100)
        clf = ak.ImageClassifier(directory=tmp_dir, max_trials=2)
>       clf.fit(x_train, y_train, epochs=2, validation_split=0.2)

test_image.py:15: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../autokeras/auto/auto_model.py:251: in fit
    directory=self.directory)
../ak/lib/python3.6/site-packages/kerastuner/tuners/randomsearch.py:122: in __init__
    **kwargs)
../ak/lib/python3.6/site-packages/kerastuner/engine/tuner.py:196: in __init__
    export_dir=os.path.join(self.directory, 'export')
../ak/lib/python3.6/site-packages/kerastuner/abstractions/host.py:49: in __init__
    self.cpu_frequency = psutil.cpu_freq()
../ak/lib/python3.6/site-packages/psutil/__init__.py:1985: in cpu_freq
    ret = _psplatform.cpu_freq()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def cpu_freq():
        """Return frequency metrics for all CPUs.
        Contrarily to other OSes, Linux updates these values in
        real-time.
        """
        def get_path(num):
            for p in ("/sys/devices/system/cpu/cpufreq/policy%s" % num,
                      "/sys/devices/system/cpu/cpu%s/cpufreq" % num):
                if os.path.exists(p):
                    return p

        ret = []
        for n in range(cpu_count_logical()):
            path = get_path(n)
            if not path:
                continue

            pjoin = os.path.join
            curr = cat(pjoin(path, "scaling_cur_freq"), fallback=None)
            if curr is None:
                # Likely an old RedHat, see:
                # https://github.com/giampaolo/psutil/issues/1071
                curr = cat(pjoin(path, "cpuinfo_cur_freq"), fallback=None)
                if curr is None:
                    raise NotImplementedError(
>                       "can't find current frequency file")
E                   NotImplementedError: can't find current frequency file

../ak/lib/python3.6/site-packages/psutil/_pslinux.py:698: NotImplementedError
----------------------------- Captured stderr call -----------------------------
2019-07-09 04:06:16.650983: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
2019-07-09 04:06:16.670016: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 3501000000 Hz
2019-07-09 04:06:16.671382: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x2acb3a0 executing computations on platform Host. Devices:
2019-07-09 04:06:16.671871: I tensorflow/compiler/xla/service/service.cc:175]   StreamExecutor device (0): <undefined>, <undefined>
_____________________________ test_image_regressor _____________________________
[gw1] linux -- Python 3.6.8 /home/lay/autokeras/ak/bin/python

tmp_dir = local('/tmp/pytest-of-lay/pytest-5/popen-gw1/test_image0')

    def test_image_regressor(tmp_dir):
        x_train = np.random.rand(100, 32, 32, 3)
        y_train = np.random.rand(100)
        clf = ak.ImageRegressor(directory=tmp_dir, max_trials=2)
>       clf.fit(x_train, y_train, epochs=2, validation_split=0.2)

test_image.py:23: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
../autokeras/auto/auto_model.py:251: in fit
    directory=self.directory)
../ak/lib/python3.6/site-packages/kerastuner/tuners/randomsearch.py:122: in __init__
    **kwargs)
../ak/lib/python3.6/site-packages/kerastuner/engine/tuner.py:196: in __init__
    export_dir=os.path.join(self.directory, 'export')
../ak/lib/python3.6/site-packages/kerastuner/abstractions/host.py:49: in __init__
    self.cpu_frequency = psutil.cpu_freq()
../ak/lib/python3.6/site-packages/psutil/__init__.py:1985: in cpu_freq
    ret = _psplatform.cpu_freq()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def cpu_freq():
        """Return frequency metrics for all CPUs.
        Contrarily to other OSes, Linux updates these values in
        real-time.
        """
        def get_path(num):
            for p in ("/sys/devices/system/cpu/cpufreq/policy%s" % num,
                      "/sys/devices/system/cpu/cpu%s/cpufreq" % num):
                if os.path.exists(p):
                    return p

        ret = []
        for n in range(cpu_count_logical()):
            path = get_path(n)
            if not path:
                continue

            pjoin = os.path.join
            curr = cat(pjoin(path, "scaling_cur_freq"), fallback=None)
            if curr is None:
                # Likely an old RedHat, see:
                # https://github.com/giampaolo/psutil/issues/1071
                curr = cat(pjoin(path, "cpuinfo_cur_freq"), fallback=None)
                if curr is None:
                    raise NotImplementedError(
>                       "can't find current frequency file")
E                   NotImplementedError: can't find current frequency file

../ak/lib/python3.6/site-packages/psutil/_pslinux.py:698: NotImplementedError
----------------------------- Captured stderr call -----------------------------
2019-07-09 04:06:16.654289: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
2019-07-09 04:06:16.673461: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 3501000000 Hz
2019-07-09 04:06:16.674197: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x2e623a0 executing computations on platform Host. Devices:
2019-07-09 04:06:16.674361: I tensorflow/compiler/xla/service/service.cc:175]   StreamExecutor device (0): <undefined>, <undefined>
========================== slowest 10 test durations ===========================
0.06s call     tests/test_image.py::test_image_regressor
0.06s call     tests/test_image.py::test_image_classifier
0.01s setup    tests/test_image.py::test_image_regressor
0.01s setup    tests/test_image.py::test_image_classifier

(0.00 durations hidden.  Use -vv to show these durations.)
=========================== 2 failed in 3.46 seconds ===========================

Process finished with exit code 0

Assertion failed

Assertion failed

occur

and when I run test_hyper_block.py then

Testing started at 5:17 AM ...
/home/lay/autokeras/ak/bin/python /home/lay/pycharm-community-2019.1.3/helpers/pycharm/_jb_pytest_runner.py --target test_hyper_block.py::test_xception_block
Launching pytest with arguments test_hyper_block.py::test_xception_block in /home/lay/autokeras/tests
============================= test session starts ==============================
platform linux -- Python 3.6.8, pytest-5.0.1, py-1.8.0, pluggy-0.12.0 -- /home/lay/autokeras/ak/bin/python
cachedir: .pytest_cache
rootdir: /home/lay/autokeras, inifile: pytest.ini
plugins: cov-2.7.1, forked-1.0.2, pep8-1.0.6, xdist-1.29.0
gw0 I / gw1 I
[gw0] linux Python 3.6.8 cwd: /home/lay/autokeras/tests
[gw1] linux Python 3.6.8 cwd: /home/lay/autokeras/tests
[gw0] Python 3.6.8 (default, Jan 14 2019, 11:02:34)  -- [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
[gw1] Python 3.6.8 (default, Jan 14 2019, 11:02:34)  -- [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]]
gw0 [1] / gw1 [1]

scheduling tests via LoadScheduling

test_hyper_block.py::test_xception_block 

========================== slowest 10 test durations ===========================
5.50s call     tests/test_hyper_block.py::test_xception_block

(0.00 durations hidden.  Use -vv to show these durations.)
=========================== 1 passed in 8.68 seconds ===========================

Process finished with exit code 0

[gw0] [100%] PASSED test_hyper_block.py::test_xception_block 2019-07-09 05:17:33.496998: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
2019-07-09 05:17:33.502888: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 3501000000 Hz
2019-07-09 05:17:33.503589: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x4ee5ae0 executing computations on platform Host. Devices:
2019-07-09 05:17:33.503786: I tensorflow/compiler/xla/service/service.cc:175]   StreamExecutor device (0): <undefined>, <undefined>
WARNING: Logging before flag parsing goes to stderr.
W0709 05:17:34.072537 139918020183872 deprecation.py:323] From /home/lay/autokeras/ak/lib/python3.6/site-packages/tensorflow/python/ops/math_grad.py:1250: add_dispatch_support.<locals>.wrapper (from tensorflow.python.ops.array_ops) is deprecated and will be removed in a future version.
Instructions for updating:
Use tf.where in 2.0, which has the same broadcast rule as np.where
2019-07-09 05:17:37.026674: W tensorflow/compiler/jit/mark_for_compilation_pass.cc:1483] (One-time warning): Not using XLA:CPU for cluster because envvar TF_XLA_FLAGS=--tf_xla_cpu_global_jit was not set.  If you want XLA:CPU, either set that envvar, or use experimental_jit_scope to enable XLA:CPU.  To confirm that XLA is active, pass --vmodule=xla_compilation_cache=1 (as a proper command-line flag, not via TF_XLA_FLAGS) or set the envvar XLA_FLAGS=--xla_hlo_profile.

occur

I try windows10 and microsoft store download ubuntu18.04LTS and open pycharm with Xlauncher

install with

    1  sudo vi /etc/apt/sources.list
    2  sudo apt-get update; sudo apt-get upgrade -y;
    3  git clone https://github.com/keras-team/autokeras.git
    4  sudo apt-get insatll python3-venv 
    5  python3 -m venv ak
    8  source ak/bin/activate
    9  cd autokeras/
   10  ls
   11  sudo apt-get install gcc
   12  sudo apt-get install python3-dev
   13  pip install wheel
   14  pip install -r requirements.txt
   15  python setup.py install
   16  history
Lay4U commented 5 years ago

1.simply change apt server and 2.sudo apt-get update; sudo apt-get upgrade -y; git clone https://github.com/keras-team/autokeras.git; sudo apt-get install python3-venv -y; python3 -m venv ak; source ak/bin/activate; cd autokeras/; sudo apt-get install gcc -y; sudo apt-get install python3-dev -y; pip install wheel; pip install -r requirements.txt; python setup.py install;

and when I execute pip install -r requirements.txt then

Collecting kerastuner from git+git://github.com/keras-team/keras-tuner@master#egg=kerastuner (from -r requirements.txt (line 3))
  Cloning git://github.com/keras-team/keras-tuner (to master) to /tmp/pip-build-3emq08hc/kerastuner
  Running setup.py (path:/tmp/pip-build-3emq08hc/kerastuner/setup.py) egg_info for package kerastuner produced metadata for project name keras-tuner. Fix your #egg=kerastuner fragments.

occur and in Python display Pakage requirement 'kerastuner' is not satisfied is it okay?

Lay4U commented 5 years ago

all of ubuntu command and result

Installing, this may take a few minutes...
Please create a default UNIX user account. The username does not need to match your Windows username.
For more information visit: https://aka.ms/wslusers
Enter new UNIX username: lay
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Installation successful!
To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.

lay@HL_ML:~$ sudo vi /etc/apt/sources.list
[sudo] password for lay:
lay@HL_ML:~$ sudo apt-get update; sudo apt-get upgrade -y; git clone https://github.com/keras-team/autokeras.git; sudo apt-get insatll python3-venv;
Get:1 http://mirror.kakao.com/ubuntu bionic InRelease [242 kB]
Get:2 http://mirror.kakao.com/ubuntu bionic-updates InRelease [88.7 kB]
Get:3 http://mirror.kakao.com/ubuntu bionic-backports InRelease [74.6 kB]
Get:4 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
Get:5 http://mirror.kakao.com/ubuntu bionic/main amd64 Packages [1019 kB]
Get:6 http://mirror.kakao.com/ubuntu bionic/main Translation-en [516 kB]
Get:7 http://mirror.kakao.com/ubuntu bionic/restricted amd64 Packages [9184 B]
Get:8 http://mirror.kakao.com/ubuntu bionic/restricted Translation-en [3584 B]
Get:9 http://mirror.kakao.com/ubuntu bionic/universe amd64 Packages [8570 kB]
Get:10 http://mirror.kakao.com/ubuntu bionic/universe Translation-en [4941 kB]
Get:11 http://mirror.kakao.com/ubuntu bionic/multiverse amd64 Packages [151 kB]
Get:12 http://mirror.kakao.com/ubuntu bionic/multiverse Translation-en [108 kB]
Get:13 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 Packages [680 kB]
Get:14 http://mirror.kakao.com/ubuntu bionic-updates/main Translation-en [250 kB]
Get:15 http://mirror.kakao.com/ubuntu bionic-updates/restricted amd64 Packages [6996 B]
Get:16 http://mirror.kakao.com/ubuntu bionic-updates/restricted Translation-en [3076 B]
Get:17 http://mirror.kakao.com/ubuntu bionic-updates/universe amd64 Packages [970 kB]
Get:18 http://mirror.kakao.com/ubuntu bionic-updates/universe Translation-en [293 kB]
Get:19 http://mirror.kakao.com/ubuntu bionic-updates/multiverse amd64 Packages [6644 B]
Get:20 http://mirror.kakao.com/ubuntu bionic-updates/multiverse Translation-en [3556 B]
Get:21 http://mirror.kakao.com/ubuntu bionic-backports/main amd64 Packages [2512 B]
Get:22 http://mirror.kakao.com/ubuntu bionic-backports/main Translation-en [1644 B]
Get:23 http://mirror.kakao.com/ubuntu bionic-backports/universe amd64 Packages [3736 B]
Get:24 http://mirror.kakao.com/ubuntu bionic-backports/universe Translation-en [1696 B]
Get:25 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [448 kB]
Get:26 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [156 kB]
Get:27 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [570 kB]
Get:28 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [185 kB]
Get:29 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [4008 B]
Get:30 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [2060 B]
Fetched 19.4 MB in 9s (2191 kB/s)
Reading package lists... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following package was automatically installed and is no longer required:
  libfreetype6
Use 'sudo apt autoremove' to remove it.
The following packages will be upgraded:
  apt apt-utils bash bind9-host bzip2 cloud-init curl dbus dmeventd dmsetup dnsutils friendly-recovery gcc-8-base
  initramfs-tools initramfs-tools-bin initramfs-tools-core libapt-inst2.0 libapt-pkg5.0 libbind9-160 libbz2-1.0
  libcurl3-gnutls libcurl4 libdb5.3 libdbus-1-3 libdevmapper-event1.02.1 libdevmapper1.02.1 libdns-export1100
  libdns1100 libdrm-common libdrm2 libelf1 libexpat1 libgcc1 libglib2.0-0 libglib2.0-data libgnutls30 libirs160
  libisc-export169 libisc169 libisccc160 libisccfg160 liblvm2app2.2 liblvm2cmd2.02 liblwres160 libnss-systemd
  libpam-systemd libpython3.6 libpython3.6-minimal libpython3.6-stdlib libseccomp2 libsqlite3-0 libssl1.1 libstdc++6
  libsystemd0 libudev1 lvm2 open-vm-tools openssl python3-cryptography python3-distupgrade python3-gdbm python3-jinja2
  python3-software-properties python3.6 python3.6-minimal snapd software-properties-common systemd systemd-sysv tzdata
  ubuntu-release-upgrader-core udev update-notifier-common vim vim-common vim-runtime vim-tiny xxd
78 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 46.2 MB of archives.
After this operation, 2202 kB disk space will be freed.
Get:1 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 bash amd64 4.4.18-2ubuntu1.2 [614 kB]
Get:2 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 bzip2 amd64 1.0.6-8.1ubuntu0.2 [33.9 kB]
Get:3 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libbz2-1.0 amd64 1.0.6-8.1ubuntu0.2 [31.2 kB]
Get:4 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 gcc-8-base amd64 8.3.0-6ubuntu1~18.04.1 [18.7 kB]
Get:5 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libgcc1 amd64 1:8.3.0-6ubuntu1~18.04.1 [40.7 kB]
Get:6 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libstdc++6 amd64 8.3.0-6ubuntu1~18.04.1 [400 kB]
Get:7 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libnss-systemd amd64 237-3ubuntu10.24 [105 kB]
Get:8 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libsystemd0 amd64 237-3ubuntu10.24 [204 kB]
Get:9 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libpam-systemd amd64 237-3ubuntu10.24 [108 kB]
Get:10 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 systemd amd64 237-3ubuntu10.24 [2903 kB]
Get:11 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 udev amd64 237-3ubuntu10.24 [1101 kB]
Get:12 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libudev1 amd64 237-3ubuntu10.24 [53.6 kB]
Get:13 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 dbus amd64 1.12.2-1ubuntu1.1 [150 kB]
Get:14 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libdbus-1-3 amd64 1.12.2-1ubuntu1.1 [175 kB]
Get:15 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libexpat1 amd64 2.2.5-3ubuntu0.1 [80.5 kB]
Get:16 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 friendly-recovery all 0.2.38ubuntu1.1 [8888 B]
Get:17 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 initramfs-tools all 0.130ubuntu3.8 [9592 B]
Get:18 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 initramfs-tools-core all 0.130ubuntu3.8 [48.2 kB]
Get:19 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 initramfs-tools-bin amd64 0.130ubuntu3.8 [12.7 kB]
Get:20 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 systemd-sysv amd64 237-3ubuntu10.24 [11.4 kB]
Get:21 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libapt-pkg5.0 amd64 1.6.11 [806 kB]
Get:22 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 snapd amd64 2.39.2+18.04 [13.1 MB]
Get:77 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libglib2.0-0 amd64 2.56.4-0ubuntu0.18.04.4 [1169 kB]
Get:23 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libapt-inst2.0 amd64 1.6.11 [55.6 kB]
Get:24 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libdb5.3 amd64 5.3.28-13.1ubuntu1.1 [672 kB]
Get:25 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 apt amd64 1.6.11 [1166 kB]
Get:26 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 apt-utils amd64 1.6.11 [206 kB]
Get:27 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libgnutls30 amd64 3.5.18-1ubuntu1.1 [645 kB]
Get:28 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libseccomp2 amd64 2.4.1-0ubuntu0.18.04.2 [39.1 kB]
Get:29 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libpython3.6 amd64 3.6.8-1~18.04.1 [1418 kB]
Get:30 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libssl1.1 amd64 1.1.1-1ubuntu2.1~18.04.3 [1295 kB]
Get:31 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3.6 amd64 3.6.8-1~18.04.1 [202 kB]
Get:32 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3.6-minimal amd64 3.6.8-1~18.04.1 [1620 kB]
Get:33 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libpython3.6-stdlib amd64 3.6.8-1~18.04.1 [1715 kB]
Get:34 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libpython3.6-minimal amd64 3.6.8-1~18.04.1 [533 kB]
Get:35 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libsqlite3-0 amd64 3.22.0-1ubuntu0.1 [497 kB]
Get:36 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 update-notifier-common all 3.192.1.7 [160 kB]
Get:37 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libdevmapper1.02.1 amd64 2:1.02.145-4.1ubuntu3.18.04.1 [127 kB]
Get:38 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 dmsetup amd64 2:1.02.145-4.1ubuntu3.18.04.1 [74.4 kB]
Get:39 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libisc-export169 amd64 1:9.11.3+dfsg-1ubuntu1.8 [164 kB]
Get:40 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libdns-export1100 amd64 1:9.11.3+dfsg-1ubuntu1.8 [749 kB]
Get:41 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libelf1 amd64 0.170-0.4ubuntu0.1 [44.8 kB]
Get:42 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.3 [614 kB]
Get:43 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 tzdata all 2019b-0ubuntu0.18.04 [190 kB]
Get:44 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 xxd amd64 2:8.0.1453-1ubuntu1.1 [49.2 kB]
Get:45 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 vim amd64 2:8.0.1453-1ubuntu1.1 [1152 kB]
Get:46 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 vim-tiny amd64 2:8.0.1453-1ubuntu1.1 [475 kB]
Get:47 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 vim-runtime all 2:8.0.1453-1ubuntu1.1 [5435 kB]
Get:48 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 vim-common all 2:8.0.1453-1ubuntu1.1 [70.4 kB]
Get:49 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libirs160 amd64 1:9.11.3+dfsg-1ubuntu1.8 [19.1 kB]
Get:50 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 bind9-host amd64 1:9.11.3+dfsg-1ubuntu1.8 [53.6 kB]
Get:51 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 dnsutils amd64 1:9.11.3+dfsg-1ubuntu1.8 [146 kB]
Get:52 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libbind9-160 amd64 1:9.11.3+dfsg-1ubuntu1.8 [27.6 kB]
Get:53 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libisccfg160 amd64 1:9.11.3+dfsg-1ubuntu1.8 [48.5 kB]
Get:54 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libisccc160 amd64 1:9.11.3+dfsg-1ubuntu1.8 [17.9 kB]
Get:55 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libdns1100 amd64 1:9.11.3+dfsg-1ubuntu1.8 [966 kB]
Get:56 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libisc169 amd64 1:9.11.3+dfsg-1ubuntu1.8 [238 kB]
Get:57 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 liblwres160 amd64 1:9.11.3+dfsg-1ubuntu1.8 [34.8 kB]
Get:58 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libdrm-common all 2.4.97-1ubuntu1~18.04.1 [5216 B]
Get:59 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libdrm2 amd64 2.4.97-1ubuntu1~18.04.1 [31.3 kB]
Get:60 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 ubuntu-release-upgrader-core all 1:18.04.34 [25.2 kB]
Get:61 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3-distupgrade all 1:18.04.34 [107 kB]
Get:62 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3-gdbm amd64 3.6.8-1~18.04 [13.3 kB]
Get:63 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.7 [159 kB]
Get:64 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.7 [214 kB]
Get:65 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libdevmapper-event1.02.1 amd64 2:1.02.145-4.1ubuntu3.18.04.1 [10.9 kB]
Get:66 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 liblvm2cmd2.02 amd64 2.02.176-4.1ubuntu3.18.04.1 [585 kB]
Get:67 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 dmeventd amd64 2:1.02.145-4.1ubuntu3.18.04.1 [30.4 kB]
Get:68 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libcurl3-gnutls amd64 7.58.0-2ubuntu3.7 [212 kB]
Get:69 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 liblvm2app2.2 amd64 2.02.176-4.1ubuntu3.18.04.1 [432 kB]
Get:70 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 lvm2 amd64 2.02.176-4.1ubuntu3.18.04.1 [928 kB]
Get:71 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3-cryptography amd64 2.1.4-1ubuntu1.3 [221 kB]
Get:72 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3-jinja2 all 2.10-1ubuntu0.18.04.1 [95.4 kB]
Get:73 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 software-properties-common all 0.96.24.32.9 [9992 B]
Get:74 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3-software-properties all 0.96.24.32.9 [23.8 kB]
Get:75 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 cloud-init all 19.1-1-gbaa47854-0ubuntu1~18.04.1 [393 kB]
Get:76 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 open-vm-tools amd64 2:10.3.10-1~ubuntu0.18.04.1 [545 kB]
Get:78 http://security.ubuntu.com/ubuntu bionic-security/main amd64 libglib2.0-data all 2.56.4-0ubuntu0.18.04.4 [4496 B]
Fetched 46.2 MB in 6s (7247 kB/s)
Extracting templates from packages: 100%
Preconfiguring packages ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../bash_4.4.18-2ubuntu1.2_amd64.deb ...
Unpacking bash (4.4.18-2ubuntu1.2) over (4.4.18-2ubuntu1.1) ...
Setting up bash (4.4.18-2ubuntu1.2) ...
update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz (builtins.7.gz) in auto mode
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../bzip2_1.0.6-8.1ubuntu0.2_amd64.deb ...
Unpacking bzip2 (1.0.6-8.1ubuntu0.2) over (1.0.6-8.1) ...
Preparing to unpack .../libbz2-1.0_1.0.6-8.1ubuntu0.2_amd64.deb ...
Unpacking libbz2-1.0:amd64 (1.0.6-8.1ubuntu0.2) over (1.0.6-8.1) ...
Setting up libbz2-1.0:amd64 (1.0.6-8.1ubuntu0.2) ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../gcc-8-base_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking gcc-8-base:amd64 (8.3.0-6ubuntu1~18.04.1) over (8.3.0-6ubuntu1~18.04) ...
Setting up gcc-8-base:amd64 (8.3.0-6ubuntu1~18.04.1) ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../libgcc1_1%3a8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking libgcc1:amd64 (1:8.3.0-6ubuntu1~18.04.1) over (1:8.3.0-6ubuntu1~18.04) ...
Setting up libgcc1:amd64 (1:8.3.0-6ubuntu1~18.04.1) ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../libstdc++6_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking libstdc++6:amd64 (8.3.0-6ubuntu1~18.04.1) over (8.3.0-6ubuntu1~18.04) ...
Setting up libstdc++6:amd64 (8.3.0-6ubuntu1~18.04.1) ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../libnss-systemd_237-3ubuntu10.24_amd64.deb ...
Unpacking libnss-systemd:amd64 (237-3ubuntu10.24) over (237-3ubuntu10.21) ...
Preparing to unpack .../libsystemd0_237-3ubuntu10.24_amd64.deb ...
Unpacking libsystemd0:amd64 (237-3ubuntu10.24) over (237-3ubuntu10.21) ...
Setting up libsystemd0:amd64 (237-3ubuntu10.24) ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../libpam-systemd_237-3ubuntu10.24_amd64.deb ...
Unpacking libpam-systemd:amd64 (237-3ubuntu10.24) over (237-3ubuntu10.21) ...
Preparing to unpack .../systemd_237-3ubuntu10.24_amd64.deb ...
Unpacking systemd (237-3ubuntu10.24) over (237-3ubuntu10.21) ...
Preparing to unpack .../udev_237-3ubuntu10.24_amd64.deb ...
Unpacking udev (237-3ubuntu10.24) over (237-3ubuntu10.21) ...
Preparing to unpack .../libudev1_237-3ubuntu10.24_amd64.deb ...
Unpacking libudev1:amd64 (237-3ubuntu10.24) over (237-3ubuntu10.21) ...
Setting up libudev1:amd64 (237-3ubuntu10.24) ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../0-dbus_1.12.2-1ubuntu1.1_amd64.deb ...
Unpacking dbus (1.12.2-1ubuntu1.1) over (1.12.2-1ubuntu1) ...
Preparing to unpack .../1-libdbus-1-3_1.12.2-1ubuntu1.1_amd64.deb ...
Unpacking libdbus-1-3:amd64 (1.12.2-1ubuntu1.1) over (1.12.2-1ubuntu1) ...
Preparing to unpack .../2-libexpat1_2.2.5-3ubuntu0.1_amd64.deb ...
Unpacking libexpat1:amd64 (2.2.5-3ubuntu0.1) over (2.2.5-3) ...
Preparing to unpack .../3-friendly-recovery_0.2.38ubuntu1.1_all.deb ...
Unpacking friendly-recovery (0.2.38ubuntu1.1) over (0.2.38ubuntu1) ...
Preparing to unpack .../4-initramfs-tools_0.130ubuntu3.8_all.deb ...
Unpacking initramfs-tools (0.130ubuntu3.8) over (0.130ubuntu3.7) ...
Preparing to unpack .../5-initramfs-tools-core_0.130ubuntu3.8_all.deb ...
Unpacking initramfs-tools-core (0.130ubuntu3.8) over (0.130ubuntu3.7) ...
Preparing to unpack .../6-initramfs-tools-bin_0.130ubuntu3.8_amd64.deb ...
Unpacking initramfs-tools-bin (0.130ubuntu3.8) over (0.130ubuntu3.7) ...
Setting up systemd (237-3ubuntu10.24) ...
Initializing machine ID from random generator.
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../systemd-sysv_237-3ubuntu10.24_amd64.deb ...
Unpacking systemd-sysv (237-3ubuntu10.24) over (237-3ubuntu10.21) ...
Preparing to unpack .../libapt-pkg5.0_1.6.11_amd64.deb ...
Unpacking libapt-pkg5.0:amd64 (1.6.11) over (1.6.10) ...
Setting up libapt-pkg5.0:amd64 (1.6.11) ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../snapd_2.39.2+18.04_amd64.deb ...
Unpacking snapd (2.39.2+18.04) over (2.38+18.04) ...
Preparing to unpack .../libapt-inst2.0_1.6.11_amd64.deb ...
Unpacking libapt-inst2.0:amd64 (1.6.11) over (1.6.10) ...
Preparing to unpack .../libdb5.3_5.3.28-13.1ubuntu1.1_amd64.deb ...
Unpacking libdb5.3:amd64 (5.3.28-13.1ubuntu1.1) over (5.3.28-13.1ubuntu1) ...
Setting up libdb5.3:amd64 (5.3.28-13.1ubuntu1.1) ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../archives/apt_1.6.11_amd64.deb ...
Unpacking apt (1.6.11) over (1.6.10) ...
Setting up apt (1.6.11) ...
Installing new version of config file /etc/apt/apt.conf.d/01autoremove ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../apt-utils_1.6.11_amd64.deb ...
Unpacking apt-utils (1.6.11) over (1.6.10) ...
Preparing to unpack .../libgnutls30_3.5.18-1ubuntu1.1_amd64.deb ...
Unpacking libgnutls30:amd64 (3.5.18-1ubuntu1.1) over (3.5.18-1ubuntu1) ...
Setting up libgnutls30:amd64 (3.5.18-1ubuntu1.1) ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../libseccomp2_2.4.1-0ubuntu0.18.04.2_amd64.deb ...
Unpacking libseccomp2:amd64 (2.4.1-0ubuntu0.18.04.2) over (2.3.1-2.1ubuntu4.1) ...
Setting up libseccomp2:amd64 (2.4.1-0ubuntu0.18.04.2) ...
(Reading database ... 28645 files and directories currently installed.)
Preparing to unpack .../00-libpython3.6_3.6.8-1~18.04.1_amd64.deb ...
Unpacking libpython3.6:amd64 (3.6.8-1~18.04.1) over (3.6.7-1~18.04) ...
Preparing to unpack .../01-libssl1.1_1.1.1-1ubuntu2.1~18.04.3_amd64.deb ...
Unpacking libssl1.1:amd64 (1.1.1-1ubuntu2.1~18.04.3) over (1.1.0g-2ubuntu4.3) ...
Preparing to unpack .../02-python3.6_3.6.8-1~18.04.1_amd64.deb ...
Unpacking python3.6 (3.6.8-1~18.04.1) over (3.6.7-1~18.04) ...
Preparing to unpack .../03-python3.6-minimal_3.6.8-1~18.04.1_amd64.deb ...
Unpacking python3.6-minimal (3.6.8-1~18.04.1) over (3.6.7-1~18.04) ...
Preparing to unpack .../04-libpython3.6-stdlib_3.6.8-1~18.04.1_amd64.deb ...
Unpacking libpython3.6-stdlib:amd64 (3.6.8-1~18.04.1) over (3.6.7-1~18.04) ...
Preparing to unpack .../05-libpython3.6-minimal_3.6.8-1~18.04.1_amd64.deb ...
Unpacking libpython3.6-minimal:amd64 (3.6.8-1~18.04.1) over (3.6.7-1~18.04) ...
Preparing to unpack .../06-libsqlite3-0_3.22.0-1ubuntu0.1_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.22.0-1ubuntu0.1) over (3.22.0-1) ...
Preparing to unpack .../07-update-notifier-common_3.192.1.7_all.deb ...
Unpacking update-notifier-common (3.192.1.7) over (3.192.1.5) ...
Preparing to unpack .../08-libdevmapper1.02.1_2%3a1.02.145-4.1ubuntu3.18.04.1_amd64.deb ...
Unpacking libdevmapper1.02.1:amd64 (2:1.02.145-4.1ubuntu3.18.04.1) over (2:1.02.145-4.1ubuntu3) ...
Preparing to unpack .../09-dmsetup_2%3a1.02.145-4.1ubuntu3.18.04.1_amd64.deb ...
Unpacking dmsetup (2:1.02.145-4.1ubuntu3.18.04.1) over (2:1.02.145-4.1ubuntu3) ...
Preparing to unpack .../10-libisc-export169_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking libisc-export169:amd64 (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../11-libdns-export1100_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking libdns-export1100 (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../12-libelf1_0.170-0.4ubuntu0.1_amd64.deb ...
Unpacking libelf1:amd64 (0.170-0.4ubuntu0.1) over (0.170-0.4) ...
Preparing to unpack .../13-libglib2.0-0_2.56.4-0ubuntu0.18.04.4_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.4) over (2.56.4-0ubuntu0.18.04.2) ...
Preparing to unpack .../14-libglib2.0-data_2.56.4-0ubuntu0.18.04.4_all.deb ...
Unpacking libglib2.0-data (2.56.4-0ubuntu0.18.04.4) over (2.56.4-0ubuntu0.18.04.2) ...
Preparing to unpack .../15-openssl_1.1.1-1ubuntu2.1~18.04.3_amd64.deb ...
Unpacking openssl (1.1.1-1ubuntu2.1~18.04.3) over (1.1.0g-2ubuntu4.3) ...
Preparing to unpack .../16-tzdata_2019b-0ubuntu0.18.04_all.deb ...
Unpacking tzdata (2019b-0ubuntu0.18.04) over (2019a-0ubuntu0.18.04) ...
Preparing to unpack .../17-xxd_2%3a8.0.1453-1ubuntu1.1_amd64.deb ...
Unpacking xxd (2:8.0.1453-1ubuntu1.1) over (2:8.0.1453-1ubuntu1) ...
Preparing to unpack .../18-vim_2%3a8.0.1453-1ubuntu1.1_amd64.deb ...
Unpacking vim (2:8.0.1453-1ubuntu1.1) over (2:8.0.1453-1ubuntu1) ...
Preparing to unpack .../19-vim-tiny_2%3a8.0.1453-1ubuntu1.1_amd64.deb ...
Unpacking vim-tiny (2:8.0.1453-1ubuntu1.1) over (2:8.0.1453-1ubuntu1) ...
Preparing to unpack .../20-vim-runtime_2%3a8.0.1453-1ubuntu1.1_all.deb ...
Unpacking vim-runtime (2:8.0.1453-1ubuntu1.1) over (2:8.0.1453-1ubuntu1) ...
Preparing to unpack .../21-vim-common_2%3a8.0.1453-1ubuntu1.1_all.deb ...
Unpacking vim-common (2:8.0.1453-1ubuntu1.1) over (2:8.0.1453-1ubuntu1) ...
Preparing to unpack .../22-libirs160_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking libirs160:amd64 (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../23-bind9-host_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking bind9-host (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../24-dnsutils_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking dnsutils (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../25-libbind9-160_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking libbind9-160:amd64 (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../26-libisccfg160_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking libisccfg160:amd64 (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../27-libisccc160_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking libisccc160:amd64 (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../28-libdns1100_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking libdns1100:amd64 (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../29-libisc169_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking libisc169:amd64 (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../30-liblwres160_1%3a9.11.3+dfsg-1ubuntu1.8_amd64.deb ...
Unpacking liblwres160:amd64 (1:9.11.3+dfsg-1ubuntu1.8) over (1:9.11.3+dfsg-1ubuntu1.7) ...
Preparing to unpack .../31-libdrm-common_2.4.97-1ubuntu1~18.04.1_all.deb ...
Unpacking libdrm-common (2.4.97-1ubuntu1~18.04.1) over (2.4.95-1~18.04.1) ...
Preparing to unpack .../32-libdrm2_2.4.97-1ubuntu1~18.04.1_amd64.deb ...
Unpacking libdrm2:amd64 (2.4.97-1ubuntu1~18.04.1) over (2.4.95-1~18.04.1) ...
Preparing to unpack .../33-ubuntu-release-upgrader-core_1%3a18.04.34_all.deb ...
Unpacking ubuntu-release-upgrader-core (1:18.04.34) over (1:18.04.32) ...
Preparing to unpack .../34-python3-distupgrade_1%3a18.04.34_all.deb ...
Unpacking python3-distupgrade (1:18.04.34) over (1:18.04.32) ...
Preparing to unpack .../35-python3-gdbm_3.6.8-1~18.04_amd64.deb ...
Unpacking python3-gdbm:amd64 (3.6.8-1~18.04) over (3.6.7-1~18.04) ...
Preparing to unpack .../36-curl_7.58.0-2ubuntu3.7_amd64.deb ...
Unpacking curl (7.58.0-2ubuntu3.7) over (7.58.0-2ubuntu3.6) ...
Preparing to unpack .../37-libcurl4_7.58.0-2ubuntu3.7_amd64.deb ...
Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.7) over (7.58.0-2ubuntu3.6) ...
Preparing to unpack .../38-libdevmapper-event1.02.1_2%3a1.02.145-4.1ubuntu3.18.04.1_amd64.deb ...
Unpacking libdevmapper-event1.02.1:amd64 (2:1.02.145-4.1ubuntu3.18.04.1) over (2:1.02.145-4.1ubuntu3) ...
Preparing to unpack .../39-liblvm2cmd2.02_2.02.176-4.1ubuntu3.18.04.1_amd64.deb ...
Unpacking liblvm2cmd2.02:amd64 (2.02.176-4.1ubuntu3.18.04.1) over (2.02.176-4.1ubuntu3) ...
Preparing to unpack .../40-dmeventd_2%3a1.02.145-4.1ubuntu3.18.04.1_amd64.deb ...
Unpacking dmeventd (2:1.02.145-4.1ubuntu3.18.04.1) over (2:1.02.145-4.1ubuntu3) ...
Preparing to unpack .../41-libcurl3-gnutls_7.58.0-2ubuntu3.7_amd64.deb ...
Unpacking libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.7) over (7.58.0-2ubuntu3.6) ...
Preparing to unpack .../42-liblvm2app2.2_2.02.176-4.1ubuntu3.18.04.1_amd64.deb ...
Unpacking liblvm2app2.2:amd64 (2.02.176-4.1ubuntu3.18.04.1) over (2.02.176-4.1ubuntu3) ...
Preparing to unpack .../43-lvm2_2.02.176-4.1ubuntu3.18.04.1_amd64.deb ...
Unpacking lvm2 (2.02.176-4.1ubuntu3.18.04.1) over (2.02.176-4.1ubuntu3) ...
Preparing to unpack .../44-python3-cryptography_2.1.4-1ubuntu1.3_amd64.deb ...
Unpacking python3-cryptography (2.1.4-1ubuntu1.3) over (2.1.4-1ubuntu1.2) ...
Preparing to unpack .../45-python3-jinja2_2.10-1ubuntu0.18.04.1_all.deb ...
Unpacking python3-jinja2 (2.10-1ubuntu0.18.04.1) over (2.10-1) ...
Preparing to unpack .../46-software-properties-common_0.96.24.32.9_all.deb ...
Unpacking software-properties-common (0.96.24.32.9) over (0.96.24.32.7) ...
Preparing to unpack .../47-python3-software-properties_0.96.24.32.9_all.deb ...
Unpacking python3-software-properties (0.96.24.32.9) over (0.96.24.32.7) ...
Preparing to unpack .../48-cloud-init_19.1-1-gbaa47854-0ubuntu1~18.04.1_all.deb ...
Unpacking cloud-init (19.1-1-gbaa47854-0ubuntu1~18.04.1) over (18.5-45-g3554ffe8-0ubuntu1~18.04.1) ...
Preparing to unpack .../49-open-vm-tools_2%3a10.3.10-1~ubuntu0.18.04.1_amd64.deb ...
Unpacking open-vm-tools (2:10.3.10-1~ubuntu0.18.04.1) over (2:10.3.5-7~ubuntu0.18.04.1) ...
Setting up libapt-inst2.0:amd64 (1.6.11) ...
Setting up libnss-systemd:amd64 (237-3ubuntu10.24) ...
Setting up libexpat1:amd64 (2.2.5-3ubuntu0.1) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Processing triggers for ureadahead (0.100.0-21) ...
Setting up update-notifier-common (3.192.1.7) ...
Setting up xxd (2:8.0.1453-1ubuntu1.1) ...
Setting up apt-utils (1.6.11) ...
Processing triggers for install-info (6.5.0.dfsg.1-2) ...
Setting up libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.7) ...
Setting up tzdata (2019b-0ubuntu0.18.04) ...

Current default time zone: 'Asia/Seoul'
Local time is now:      Tue Jul  9 05:54:38 KST 2019.
Universal Time is now:  Mon Jul  8 20:54:38 UTC 2019.
Run 'dpkg-reconfigure tzdata' if you wish to change it.

Setting up systemd-sysv (237-3ubuntu10.24) ...
Setting up libelf1:amd64 (0.170-0.4ubuntu0.1) ...
Setting up libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.4) ...
No schema files found: doing nothing.
Setting up libdevmapper1.02.1:amd64 (2:1.02.145-4.1ubuntu3.18.04.1) ...
Setting up bzip2 (1.0.6-8.1ubuntu0.2) ...
Setting up libdrm-common (2.4.97-1ubuntu1~18.04.1) ...
Setting up libdevmapper-event1.02.1:amd64 (2:1.02.145-4.1ubuntu3.18.04.1) ...
Setting up libglib2.0-data (2.56.4-0ubuntu0.18.04.4) ...
Processing triggers for libc-bin (2.27-3ubuntu1) ...
Setting up udev (237-3ubuntu10.24) ...
invoke-rc.d: could not determine current runlevel
update-initramfs: deferring update (trigger activated)
Setting up libssl1.1:amd64 (1.1.1-1ubuntu2.1~18.04.3) ...
Checking for services that may need to be restarted...done.
Checking for services that may need to be restarted...done.
Checking init scripts...

Restarting services possibly affected by the upgrade:
invoke-rc.d: could not determine current runlevel

Services restarted successfully.

Setting up python3-jinja2 (2.10-1ubuntu0.18.04.1) ...
Processing triggers for systemd (237-3ubuntu10.24) ...
Setting up openssl (1.1.1-1ubuntu2.1~18.04.3) ...
Installing new version of config file /etc/ssl/openssl.cnf ...
Setting up vim-common (2:8.0.1453-1ubuntu1.1) ...
Setting up libsqlite3-0:amd64 (3.22.0-1ubuntu0.1) ...
Setting up dmsetup (2:1.02.145-4.1ubuntu3.18.04.1) ...
update-initramfs: deferring update (trigger activated)
Setting up python3-gdbm:amd64 (3.6.8-1~18.04) ...
Setting up liblvm2app2.2:amd64 (2.02.176-4.1ubuntu3.18.04.1) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Setting up python3-software-properties (0.96.24.32.9) ...
Setting up vim-runtime (2:8.0.1453-1ubuntu1.1) ...
Setting up initramfs-tools-bin (0.130ubuntu3.8) ...
Setting up friendly-recovery (0.2.38ubuntu1.1) ...
Setting up liblwres160:amd64 (1:9.11.3+dfsg-1ubuntu1.8) ...
Processing triggers for rsyslog (8.32.0-1ubuntu4) ...
invoke-rc.d: could not determine current runlevel
Setting up libdbus-1-3:amd64 (1.12.2-1ubuntu1.1) ...
Setting up python3-distupgrade (1:18.04.34) ...
Setting up cloud-init (19.1-1-gbaa47854-0ubuntu1~18.04.1) ...
Installing new version of config file /etc/cloud/cloud.cfg ...
Setting up software-properties-common (0.96.24.32.9) ...
Setting up python3-cryptography (2.1.4-1ubuntu1.3) ...
Setting up vim-tiny (2:8.0.1453-1ubuntu1.1) ...
Setting up libisc169:amd64 (1:9.11.3+dfsg-1ubuntu1.8) ...
Setting up libisccc160:amd64 (1:9.11.3+dfsg-1ubuntu1.8) ...
Setting up initramfs-tools-core (0.130ubuntu3.8) ...
Setting up libisc-export169:amd64 (1:9.11.3+dfsg-1ubuntu1.8) ...
Setting up libcurl4:amd64 (7.58.0-2ubuntu3.7) ...
Setting up initramfs-tools (0.130ubuntu3.8) ...
update-initramfs: deferring update (trigger activated)
Setting up ubuntu-release-upgrader-core (1:18.04.34) ...
Setting up libdrm2:amd64 (2.4.97-1ubuntu1~18.04.1) ...
Setting up libpython3.6-minimal:amd64 (3.6.8-1~18.04.1) ...
Setting up snapd (2.39.2+18.04) ...
Installing new version of config file /etc/apparmor.d/usr.lib.snapd.snap-confine.real ...
md5sum: /etc/apparmor.d/usr.lib.snapd.snap-confine: No such file or directory
Setting up libdns-export1100 (1:9.11.3+dfsg-1ubuntu1.8) ...
Setting up dbus (1.12.2-1ubuntu1.1) ...
Setting up libdns1100:amd64 (1:9.11.3+dfsg-1ubuntu1.8) ...
Setting up libpython3.6-stdlib:amd64 (3.6.8-1~18.04.1) ...
Setting up libpam-systemd:amd64 (237-3ubuntu10.24) ...
Setting up curl (7.58.0-2ubuntu3.7) ...
Setting up open-vm-tools (2:10.3.10-1~ubuntu0.18.04.1) ...
invoke-rc.d: could not determine current runlevel
Setting up python3.6-minimal (3.6.8-1~18.04.1) ...
Setting up libisccfg160:amd64 (1:9.11.3+dfsg-1ubuntu1.8) ...
Setting up libpython3.6:amd64 (3.6.8-1~18.04.1) ...
Setting up python3.6 (3.6.8-1~18.04.1) ...
Setting up vim (2:8.0.1453-1ubuntu1.1) ...
Setting up libirs160:amd64 (1:9.11.3+dfsg-1ubuntu1.8) ...
Setting up libbind9-160:amd64 (1:9.11.3+dfsg-1ubuntu1.8) ...
Setting up bind9-host (1:9.11.3+dfsg-1ubuntu1.8) ...
Setting up dnsutils (1:9.11.3+dfsg-1ubuntu1.8) ...
Setting up liblvm2cmd2.02:amd64 (2.02.176-4.1ubuntu3.18.04.1) ...
Setting up dmeventd (2:1.02.145-4.1ubuntu3.18.04.1) ...
Setting up lvm2 (2.02.176-4.1ubuntu3.18.04.1) ...
invoke-rc.d: could not determine current runlevel
update-initramfs: deferring update (trigger activated)
invoke-rc.d: could not determine current runlevel
invoke-rc.d: could not determine current runlevel
Processing triggers for libc-bin (2.27-3ubuntu1) ...
Processing triggers for initramfs-tools (0.130ubuntu3.8) ...
Cloning into 'autokeras'...
remote: Enumerating objects: 282, done.
remote: Counting objects: 100% (282/282), done.
remote: Compressing objects: 100% (163/163), done.
remote: Total 9394 (delta 187), reused 167 (delta 104), pack-reused 9112
Receiving objects: 100% (9394/9394), 68.51 MiB | 14.47 MiB/s, done.
Resolving deltas: 100% (6214/6214), done.
E: Invalid operation insatll
lay@HL_ML:~$ sudo apt-get install python3-venv;
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
  libfreetype6
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
  python-pip-whl python3-distutils python3-lib2to3 python3.6-venv
The following NEW packages will be installed:
  python-pip-whl python3-distutils python3-lib2to3 python3-venv python3.6-venv
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 1878 kB of archives.
After this operation, 4017 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://mirror.kakao.com/ubuntu bionic-updates/universe amd64 python-pip-whl all 9.0.1-2.3~ubuntu1.18.04.1 [1653 kB]
Get:2 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3-lib2to3 all 3.6.8-1~18.04 [76.5 kB]
Get:3 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3-distutils all 3.6.8-1~18.04 [141 kB]
Get:4 http://mirror.kakao.com/ubuntu bionic-updates/universe amd64 python3.6-venv amd64 3.6.8-1~18.04.1 [6184 B]
Get:5 http://mirror.kakao.com/ubuntu bionic-updates/universe amd64 python3-venv amd64 3.6.7-1~18.04 [1208 B]
Fetched 1878 kB in 0s (7364 kB/s)
Selecting previously unselected package python-pip-whl.
(Reading database ... 28657 files and directories currently installed.)
Preparing to unpack .../python-pip-whl_9.0.1-2.3~ubuntu1.18.04.1_all.deb ...
Unpacking python-pip-whl (9.0.1-2.3~ubuntu1.18.04.1) ...
Selecting previously unselected package python3-lib2to3.
Preparing to unpack .../python3-lib2to3_3.6.8-1~18.04_all.deb ...
Unpacking python3-lib2to3 (3.6.8-1~18.04) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../python3-distutils_3.6.8-1~18.04_all.deb ...
Unpacking python3-distutils (3.6.8-1~18.04) ...
Selecting previously unselected package python3.6-venv.
Preparing to unpack .../python3.6-venv_3.6.8-1~18.04.1_amd64.deb ...
Unpacking python3.6-venv (3.6.8-1~18.04.1) ...
Selecting previously unselected package python3-venv.
Preparing to unpack .../python3-venv_3.6.7-1~18.04_amd64.deb ...
Unpacking python3-venv (3.6.7-1~18.04) ...
Setting up python-pip-whl (9.0.1-2.3~ubuntu1.18.04.1) ...
Setting up python3.6-venv (3.6.8-1~18.04.1) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Setting up python3-lib2to3 (3.6.8-1~18.04) ...
Setting up python3-distutils (3.6.8-1~18.04) ...
Setting up python3-venv (3.6.7-1~18.04) ...
lay@HL_ML:~$ python3 -m venv ak
lay@HL_ML:~$ source ak/bin/activate
(ak) lay@HL_ML:~$ cd autokeras/
(ak) lay@HL_ML:~/autokeras$ sudo apt-get install gcc; sudo apt-get install python3-dev; pip install wheel;
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
  libfreetype6
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-7 gcc-7 gcc-7-base libasan4 libatomic1 libbinutils
  libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libgcc-7-dev libgomp1 libisl19 libitm1 liblsan0 libmpc3 libmpx2
  libquadmath0 libtsan0 libubsan0 linux-libc-dev manpages-dev
Suggested packages:
  binutils-doc cpp-doc gcc-7-locales gcc-multilib make autoconf automake libtool flex bison gdb gcc-doc gcc-7-multilib
  gcc-7-doc libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan4-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg
  libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg glibc-doc
The following NEW packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-7 gcc gcc-7 gcc-7-base libasan4 libatomic1 libbinutils
  libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libgcc-7-dev libgomp1 libisl19 libitm1 liblsan0 libmpc3 libmpx2
  libquadmath0 libtsan0 libubsan0 linux-libc-dev manpages-dev
0 upgraded, 27 newly installed, 0 to remove and 0 not upgraded.
Need to get 26.9 MB of archives.
After this operation, 115 MB of additional disk space will be used.
Do you want to continue? [Y/n] ^C
(ak) lay@HL_ML:~/autokeras$ sudo apt-get install gcc -y; sudo apt-get install python3-dev -y; pip install wheel;
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
  libfreetype6
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-7 gcc-7 gcc-7-base libasan4 libatomic1 libbinutils
  libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libgcc-7-dev libgomp1 libisl19 libitm1 liblsan0 libmpc3 libmpx2
  libquadmath0 libtsan0 libubsan0 linux-libc-dev manpages-dev
Suggested packages:
  binutils-doc cpp-doc gcc-7-locales gcc-multilib make autoconf automake libtool flex bison gdb gcc-doc gcc-7-multilib
  gcc-7-doc libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan4-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg
  libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg glibc-doc
The following NEW packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-7 gcc gcc-7 gcc-7-base libasan4 libatomic1 libbinutils
  libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libgcc-7-dev libgomp1 libisl19 libitm1 liblsan0 libmpc3 libmpx2
  libquadmath0 libtsan0 libubsan0 linux-libc-dev manpages-dev
0 upgraded, 27 newly installed, 0 to remove and 0 not upgraded.
Need to get 26.9 MB of archives.
After this operation, 115 MB of additional disk space will be used.
Get:1 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 binutils-common amd64 2.30-21ubuntu1~18.04.2 [193 kB]
Get:2 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libbinutils amd64 2.30-21ubuntu1~18.04.2 [503 kB]
Get:3 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.30-21ubuntu1~18.04.2 [1856 kB]
Get:4 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 binutils amd64 2.30-21ubuntu1~18.04.2 [3396 B]
Get:5 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 gcc-7-base amd64 7.4.0-1ubuntu1~18.04.1 [18.9 kB]
Get:6 http://mirror.kakao.com/ubuntu bionic/main amd64 libisl19 amd64 0.19-1 [551 kB]
Get:7 http://mirror.kakao.com/ubuntu bionic/main amd64 libmpc3 amd64 1.1.0-1 [40.8 kB]
Get:8 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 cpp-7 amd64 7.4.0-1ubuntu1~18.04.1 [6742 kB]
Get:9 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 cpp amd64 4:7.4.0-1ubuntu2.3 [27.7 kB]
Get:10 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libcc1-0 amd64 8.3.0-6ubuntu1~18.04.1 [47.4 kB]
Get:11 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libgomp1 amd64 8.3.0-6ubuntu1~18.04.1 [76.4 kB]
Get:12 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libitm1 amd64 8.3.0-6ubuntu1~18.04.1 [28.0 kB]
Get:13 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libatomic1 amd64 8.3.0-6ubuntu1~18.04.1 [9184 B]
Get:14 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libasan4 amd64 7.4.0-1ubuntu1~18.04.1 [359 kB]
Get:15 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 liblsan0 amd64 8.3.0-6ubuntu1~18.04.1 [133 kB]
Get:16 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libtsan0 amd64 8.3.0-6ubuntu1~18.04.1 [288 kB]
Get:17 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libubsan0 amd64 7.4.0-1ubuntu1~18.04.1 [126 kB]
Get:18 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libcilkrts5 amd64 7.4.0-1ubuntu1~18.04.1 [42.5 kB]
Get:19 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libmpx2 amd64 8.3.0-6ubuntu1~18.04.1 [11.6 kB]
Get:20 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libquadmath0 amd64 8.3.0-6ubuntu1~18.04.1 [133 kB]
Get:21 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libgcc-7-dev amd64 7.4.0-1ubuntu1~18.04.1 [2381 kB]
Get:22 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 gcc-7 amd64 7.4.0-1ubuntu1~18.04.1 [7463 kB]
Get:23 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 gcc amd64 4:7.4.0-1ubuntu2.3 [5184 B]
Get:24 http://mirror.kakao.com/ubuntu bionic/main amd64 libc-dev-bin amd64 2.27-3ubuntu1 [71.8 kB]
Get:25 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 linux-libc-dev amd64 4.15.0-54.58 [1004 kB]
Get:26 http://mirror.kakao.com/ubuntu bionic/main amd64 libc6-dev amd64 2.27-3ubuntu1 [2587 kB]
Get:27 http://mirror.kakao.com/ubuntu bionic/main amd64 manpages-dev all 4.15-1 [2217 kB]
Fetched 26.9 MB in 1s (31.8 MB/s)
Selecting previously unselected package binutils-common:amd64.
(Reading database ... 28965 files and directories currently installed.)
Preparing to unpack .../00-binutils-common_2.30-21ubuntu1~18.04.2_amd64.deb ...
Unpacking binutils-common:amd64 (2.30-21ubuntu1~18.04.2) ...
Selecting previously unselected package libbinutils:amd64.
Preparing to unpack .../01-libbinutils_2.30-21ubuntu1~18.04.2_amd64.deb ...
Unpacking libbinutils:amd64 (2.30-21ubuntu1~18.04.2) ...
Selecting previously unselected package binutils-x86-64-linux-gnu.
Preparing to unpack .../02-binutils-x86-64-linux-gnu_2.30-21ubuntu1~18.04.2_amd64.deb ...
Unpacking binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.2) ...
Selecting previously unselected package binutils.
Preparing to unpack .../03-binutils_2.30-21ubuntu1~18.04.2_amd64.deb ...
Unpacking binutils (2.30-21ubuntu1~18.04.2) ...
Selecting previously unselected package gcc-7-base:amd64.
Preparing to unpack .../04-gcc-7-base_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
Unpacking gcc-7-base:amd64 (7.4.0-1ubuntu1~18.04.1) ...
Selecting previously unselected package libisl19:amd64.
Preparing to unpack .../05-libisl19_0.19-1_amd64.deb ...
Unpacking libisl19:amd64 (0.19-1) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../06-libmpc3_1.1.0-1_amd64.deb ...
Unpacking libmpc3:amd64 (1.1.0-1) ...
Selecting previously unselected package cpp-7.
Preparing to unpack .../07-cpp-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
Unpacking cpp-7 (7.4.0-1ubuntu1~18.04.1) ...
Selecting previously unselected package cpp.
Preparing to unpack .../08-cpp_4%3a7.4.0-1ubuntu2.3_amd64.deb ...
Unpacking cpp (4:7.4.0-1ubuntu2.3) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../09-libcc1-0_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking libcc1-0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../10-libgomp1_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking libgomp1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../11-libitm1_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking libitm1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../12-libatomic1_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking libatomic1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Selecting previously unselected package libasan4:amd64.
Preparing to unpack .../13-libasan4_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
Unpacking libasan4:amd64 (7.4.0-1ubuntu1~18.04.1) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../14-liblsan0_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking liblsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../15-libtsan0_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking libtsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Selecting previously unselected package libubsan0:amd64.
Preparing to unpack .../16-libubsan0_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
Unpacking libubsan0:amd64 (7.4.0-1ubuntu1~18.04.1) ...
Selecting previously unselected package libcilkrts5:amd64.
Preparing to unpack .../17-libcilkrts5_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
Unpacking libcilkrts5:amd64 (7.4.0-1ubuntu1~18.04.1) ...
Selecting previously unselected package libmpx2:amd64.
Preparing to unpack .../18-libmpx2_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking libmpx2:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../19-libquadmath0_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking libquadmath0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Selecting previously unselected package libgcc-7-dev:amd64.
Preparing to unpack .../20-libgcc-7-dev_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
Unpacking libgcc-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ...
Selecting previously unselected package gcc-7.
Preparing to unpack .../21-gcc-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
Unpacking gcc-7 (7.4.0-1ubuntu1~18.04.1) ...
Selecting previously unselected package gcc.
Preparing to unpack .../22-gcc_4%3a7.4.0-1ubuntu2.3_amd64.deb ...
Unpacking gcc (4:7.4.0-1ubuntu2.3) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../23-libc-dev-bin_2.27-3ubuntu1_amd64.deb ...
Unpacking libc-dev-bin (2.27-3ubuntu1) ...
Selecting previously unselected package linux-libc-dev:amd64.
Preparing to unpack .../24-linux-libc-dev_4.15.0-54.58_amd64.deb ...
Unpacking linux-libc-dev:amd64 (4.15.0-54.58) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../25-libc6-dev_2.27-3ubuntu1_amd64.deb ...
Unpacking libc6-dev:amd64 (2.27-3ubuntu1) ...
Selecting previously unselected package manpages-dev.
Preparing to unpack .../26-manpages-dev_4.15-1_all.deb ...
Unpacking manpages-dev (4.15-1) ...
Setting up libquadmath0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Setting up libgomp1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Setting up libatomic1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Setting up libcc1-0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Setting up libtsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Setting up linux-libc-dev:amd64 (4.15.0-54.58) ...
Setting up liblsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Setting up gcc-7-base:amd64 (7.4.0-1ubuntu1~18.04.1) ...
Setting up binutils-common:amd64 (2.30-21ubuntu1~18.04.2) ...
Setting up libmpx2:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Processing triggers for libc-bin (2.27-3ubuntu1) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Setting up libmpc3:amd64 (1.1.0-1) ...
Setting up libc-dev-bin (2.27-3ubuntu1) ...
Setting up manpages-dev (4.15-1) ...
Setting up libc6-dev:amd64 (2.27-3ubuntu1) ...
Setting up libitm1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Setting up libisl19:amd64 (0.19-1) ...
Setting up libasan4:amd64 (7.4.0-1ubuntu1~18.04.1) ...
Setting up libbinutils:amd64 (2.30-21ubuntu1~18.04.2) ...
Setting up libcilkrts5:amd64 (7.4.0-1ubuntu1~18.04.1) ...
Setting up libubsan0:amd64 (7.4.0-1ubuntu1~18.04.1) ...
Setting up libgcc-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ...
Setting up cpp-7 (7.4.0-1ubuntu1~18.04.1) ...
Setting up binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.2) ...
Setting up cpp (4:7.4.0-1ubuntu2.3) ...
Setting up binutils (2.30-21ubuntu1~18.04.2) ...
Setting up gcc-7 (7.4.0-1ubuntu1~18.04.1) ...
Setting up gcc (4:7.4.0-1ubuntu2.3) ...
Processing triggers for libc-bin (2.27-3ubuntu1) ...
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
  libfreetype6
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
  dh-python libexpat1-dev libpython3-dev libpython3.6-dev python3.6-dev
Suggested packages:
  libdpkg-perl dpkg-dev
The following NEW packages will be installed:
  dh-python libexpat1-dev libpython3-dev libpython3.6-dev python3-dev python3.6-dev
0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded.
Need to get 45.5 MB of archives.
After this operation, 78.3 MB of additional disk space will be used.
Get:1 http://mirror.kakao.com/ubuntu bionic/main amd64 dh-python all 3.20180325ubuntu2 [89.2 kB]
Get:2 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libexpat1-dev amd64 2.2.5-3ubuntu0.1 [122 kB]
Get:3 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libpython3.6-dev amd64 3.6.8-1~18.04.1 [44.8 MB]
Get:4 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 libpython3-dev amd64 3.6.7-1~18.04 [7328 B]
Get:5 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3.6-dev amd64 3.6.8-1~18.04.1 [508 kB]
Get:6 http://mirror.kakao.com/ubuntu bionic-updates/main amd64 python3-dev amd64 3.6.7-1~18.04 [1288 B]
Fetched 45.5 MB in 1s (42.0 MB/s)
Selecting previously unselected package dh-python.
(Reading database ... 33145 files and directories currently installed.)
Preparing to unpack .../0-dh-python_3.20180325ubuntu2_all.deb ...
Unpacking dh-python (3.20180325ubuntu2) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../1-libexpat1-dev_2.2.5-3ubuntu0.1_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.2.5-3ubuntu0.1) ...
Selecting previously unselected package libpython3.6-dev:amd64.
Preparing to unpack .../2-libpython3.6-dev_3.6.8-1~18.04.1_amd64.deb ...
Unpacking libpython3.6-dev:amd64 (3.6.8-1~18.04.1) ...
Selecting previously unselected package libpython3-dev:amd64.
Preparing to unpack .../3-libpython3-dev_3.6.7-1~18.04_amd64.deb ...
Unpacking libpython3-dev:amd64 (3.6.7-1~18.04) ...
Selecting previously unselected package python3.6-dev.
Preparing to unpack .../4-python3.6-dev_3.6.8-1~18.04.1_amd64.deb ...
Unpacking python3.6-dev (3.6.8-1~18.04.1) ...
Selecting previously unselected package python3-dev.
Preparing to unpack .../5-python3-dev_3.6.7-1~18.04_amd64.deb ...
Unpacking python3-dev (3.6.7-1~18.04) ...
Setting up libexpat1-dev:amd64 (2.2.5-3ubuntu0.1) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Setting up dh-python (3.20180325ubuntu2) ...
Setting up libpython3.6-dev:amd64 (3.6.8-1~18.04.1) ...
Setting up python3.6-dev (3.6.8-1~18.04.1) ...
Setting up libpython3-dev:amd64 (3.6.7-1~18.04) ...
Setting up python3-dev (3.6.7-1~18.04) ...
Collecting wheel
  Downloading https://files.pythonhosted.org/packages/bb/10/44230dd6bf3563b8f227dbf344c908d412ad2ff48066476672f3a72e174e/wheel-0.33.4-py2.py3-none-any.whl
Installing collected packages: wheel
Successfully installed wheel-0.33.4
(ak) lay@HL_ML:~/autokeras$ pip install -r requirements.txt
Collecting tensorflow>=2.0.0b0 (from -r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/29/6c/2c9a5c4d095c63c2fb37d20def0e4f92685f7aee9243d6aae25862694fd1/tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl (87.9MB)
    100% |████████████████████████████████| 87.9MB 18kB/s
Collecting scikit-learn>=0.20.2 (from -r requirements.txt (line 2))
  Downloading https://files.pythonhosted.org/packages/85/04/49633f490f726da6e454fddc8e938bbb5bfed2001681118d3814c219b723/scikit_learn-0.21.2-cp36-cp36m-manylinux1_x86_64.whl (6.7MB)
    100% |████████████████████████████████| 6.7MB 240kB/s
Collecting kerastuner from git+git://github.com/keras-team/keras-tuner@master#egg=kerastuner (from -r requirements.txt (line 3))
  Cloning git://github.com/keras-team/keras-tuner (to master) to /tmp/pip-build-3emq08hc/kerastuner
  Running setup.py (path:/tmp/pip-build-3emq08hc/kerastuner/setup.py) egg_info for package kerastuner produced metadata for project name keras-tuner. Fix your #egg=kerastuner fragments.
Collecting pytest>=4.5.0 (from -r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/69/1d/2430053122a3c6106f7fd1ff0bc68eb73e27db8f951db70fcd942da52c7b/pytest-5.0.1-py3-none-any.whl (221kB)
    100% |████████████████████████████████| 225kB 4.6MB/s
Collecting pytest-pep8 (from -r requirements.txt (line 5))
  Downloading https://files.pythonhosted.org/packages/1f/1c/c834344ef39381558b047bea1e3005197fa8457c199d58219996ca07defb/pytest-pep8-1.0.6.tar.gz
Collecting pytest-xdist (from -r requirements.txt (line 6))
  Downloading https://files.pythonhosted.org/packages/9f/cc/371b2e6dfbf4e8df07b04e310dd6ea0b3f367e257d1e6cb516b25bc4af1b/pytest_xdist-1.29.0-py2.py3-none-any.whl
Collecting pytest-cov (from -r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/84/7b/73f8522619d1cbb22b9a36f9c54bc5ce5e24648e53cc1bf566477d2d1f2b/pytest_cov-2.7.1-py2.py3-none-any.whl
Collecting tb-nightly<1.14.0a20190604,>=1.14.0a20190603 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/a4/96/571b875cd81dda9d5dfa1422a4f9d749e67c0a8d4f4f0b33a4e5f5f35e27/tb_nightly-1.14.0a20190603-py3-none-any.whl (3.1MB)
    100% |████████████████████████████████| 3.1MB 546kB/s
Collecting astor>=0.6.0 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/d1/4f/950dfae467b384fc96bc6469de25d832534f6b4441033c39f914efd13418/astor-0.8.0-py2.py3-none-any.whl
Collecting six>=1.10.0 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/73/fb/00a976f728d0d1fecfe898238ce23f502a721c0ac0ecfedb80e0d88c64e9/six-1.12.0-py2.py3-none-any.whl
Collecting absl-py>=0.7.0 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/da/3f/9b0355080b81b15ba6a9ffcf1f5ea39e307a2778b2f2dc8694724e8abd5b/absl-py-0.7.1.tar.gz (99kB)
    100% |████████████████████████████████| 102kB 7.6MB/s
Collecting termcolor>=1.1.0 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/8a/48/a76be51647d0eb9f10e2a4511bf3ffb8cc1e6b14e9e4fab46173aa79f981/termcolor-1.1.0.tar.gz
Requirement already satisfied: wheel>=0.26 in /home/lay/ak/lib/python3.6/site-packages (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
Collecting gast>=0.2.0 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/4e/35/11749bf99b2d4e3cceb4d55ca22590b0d7c2c62b9de38ac4a4a7f4687421/gast-0.2.2.tar.gz
Collecting google-pasta>=0.1.6 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/d0/33/376510eb8d6246f3c30545f416b2263eee461e40940c2a4413c711bdf62d/google_pasta-0.1.7-py3-none-any.whl (52kB)
    100% |████████████████████████████████| 61kB 5.7MB/s
Collecting keras-preprocessing>=1.0.5 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/28/6a/8c1f62c37212d9fc441a7e26736df51ce6f0e38455816445471f10da4f0a/Keras_Preprocessing-1.1.0-py2.py3-none-any.whl (41kB)
    100% |████████████████████████████████| 51kB 5.6MB/s
Collecting numpy<2.0,>=1.14.5 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/87/2d/e4656149cbadd3a8a0369fcd1a9c7d61cc7b87b3903b85389c70c989a696/numpy-1.16.4-cp36-cp36m-manylinux1_x86_64.whl (17.3MB)
    100% |████████████████████████████████| 17.3MB 98kB/s
Collecting protobuf>=3.6.1 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/d2/fb/29de8d08967f0cce1bb10b39846d836b0f3bf6776ddc36aed7c73498ca7e/protobuf-3.8.0-cp36-cp36m-manylinux1_x86_64.whl (1.2MB)
    100% |████████████████████████████████| 1.2MB 1.4MB/s
Collecting tf-estimator-nightly<1.14.0.dev2019060502,>=1.14.0.dev2019060501 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/32/dd/99c47dd007dcf10d63fd895611b063732646f23059c618a373e85019eb0e/tf_estimator_nightly-1.14.0.dev2019060501-py2.py3-none-any.whl (496kB)
    100% |████████████████████████████████| 501kB 2.9MB/s
Collecting wrapt>=1.11.1 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/23/84/323c2415280bc4fc880ac5050dddfb3c8062c2552b34c2e512eb4aa68f79/wrapt-1.11.2.tar.gz
Collecting grpcio>=1.8.6 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/f2/5d/b434403adb2db8853a97828d3d19f2032e79d630e0d11a8e95d243103a11/grpcio-1.22.0-cp36-cp36m-manylinux1_x86_64.whl (2.2MB)
    100% |████████████████████████████████| 2.2MB 443kB/s
Collecting keras-applications>=1.0.6 (from tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/71/e3/19762fdfc62877ae9102edf6342d71b28fbfd9dea3d2f96a882ce099b03f/Keras_Applications-1.0.8-py3-none-any.whl (50kB)
    100% |████████████████████████████████| 51kB 5.3MB/s
Collecting scipy>=0.17.0 (from scikit-learn>=0.20.2->-r requirements.txt (line 2))
  Downloading https://files.pythonhosted.org/packages/72/4c/5f81e7264b0a7a8bd570810f48cd346ba36faedbd2ba255c873ad556de76/scipy-1.3.0-cp36-cp36m-manylinux1_x86_64.whl (25.2MB)
    100% |████████████████████████████████| 25.2MB 64kB/s
Collecting joblib>=0.11 (from scikit-learn>=0.20.2->-r requirements.txt (line 2))
  Downloading https://files.pythonhosted.org/packages/cd/c1/50a758e8247561e58cb87305b1e90b171b8c767b15b12a1734001f41d356/joblib-0.13.2-py2.py3-none-any.whl (278kB)
    100% |████████████████████████████████| 286kB 4.1MB/s
Collecting colorama (from keras-tuner->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/4f/a6/728666f39bfff1719fc94c481890b2106837da9318031f71a8424b662e12/colorama-0.4.1-py2.py3-none-any.whl
Collecting psutil (from keras-tuner->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/1c/ca/5b8c1fe032a458c2c4bcbe509d1401dca9dda35c7fc46b36bb81c2834740/psutil-5.6.3.tar.gz (435kB)
    100% |████████████████████████████████| 440kB 3.0MB/s
Collecting requests (from keras-tuner->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/51/bd/23c926cd341ea6b7dd0b2a00aba99ae0f828be89d72b2190f27c11d4b7fb/requests-2.22.0-py2.py3-none-any.whl (57kB)
    100% |████████████████████████████████| 61kB 5.6MB/s
Collecting tabulate (from keras-tuner->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/c2/fd/202954b3f0eb896c53b7b6f07390851b1fd2ca84aa95880d7ae4f434c4ac/tabulate-0.8.3.tar.gz (46kB)
    100% |████████████████████████████████| 51kB 5.0MB/s
Collecting terminaltables (from keras-tuner->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/9b/c4/4a21174f32f8a7e1104798c445dacdc1d4df86f2f26722767034e4de4bff/terminaltables-3.1.0.tar.gz
Collecting tqdm (from keras-tuner->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/9f/3d/7a6b68b631d2ab54975f3a4863f3c4e9b26445353264ef01f465dc9b0208/tqdm-4.32.2-py2.py3-none-any.whl (50kB)
    100% |████████████████████████████████| 51kB 4.9MB/s
Collecting wcwidth (from pytest>=4.5.0->-r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/7e/9f/526a6947247599b084ee5232e4f9190a38f398d7300d866af3ab571a5bfe/wcwidth-0.1.7-py2.py3-none-any.whl
Collecting importlib-metadata>=0.12 (from pytest>=4.5.0->-r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/bd/23/dce4879ec58acf3959580bfe769926ed8198727250c5e395e6785c764a02/importlib_metadata-0.18-py2.py3-none-any.whl
Collecting pluggy<1.0,>=0.12 (from pytest>=4.5.0->-r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/06/ee/de89e0582276e3551df3110088bf20844de2b0e7df2748406876cc78e021/pluggy-0.12.0-py2.py3-none-any.whl
Collecting atomicwrites>=1.0 (from pytest>=4.5.0->-r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/52/90/6155aa926f43f2b2a22b01be7241be3bfd1ceaf7d0b3267213e8127d41f4/atomicwrites-1.3.0-py2.py3-none-any.whl
Collecting more-itertools>=4.0.0 (from pytest>=4.5.0->-r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/1f/9e/942df77ddde2fae3f319f2ab8b5d00d5f6b115496e2eb4bad37d1aaefeea/more_itertools-7.1.0-py3-none-any.whl (55kB)
    100% |████████████████████████████████| 61kB 5.6MB/s
Collecting packaging (from pytest>=4.5.0->-r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/91/32/58bc30e646e55eab8b21abf89e353f59c0cc02c417e42929f4a9546e1b1d/packaging-19.0-py2.py3-none-any.whl
Collecting py>=1.5.0 (from pytest>=4.5.0->-r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/76/bc/394ad449851729244a97857ee14d7cba61ddb268dce3db538ba2f2ba1f0f/py-1.8.0-py2.py3-none-any.whl (83kB)
    100% |████████████████████████████████| 92kB 7.0MB/s
Collecting attrs>=17.4.0 (from pytest>=4.5.0->-r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/23/96/d828354fa2dbdf216eaa7b7de0db692f12c234f7ef888cc14980ef40d1d2/attrs-19.1.0-py2.py3-none-any.whl
Collecting pep8>=1.3 (from pytest-pep8->-r requirements.txt (line 5))
  Downloading https://files.pythonhosted.org/packages/42/3f/669429ce58de2c22d8d2c542752e137ec4b9885fff398d3eceb1a7f5acb4/pep8-1.7.1-py2.py3-none-any.whl (41kB)
    100% |████████████████████████████████| 51kB 5.3MB/s
Collecting pytest-cache (from pytest-pep8->-r requirements.txt (line 5))
  Downloading https://files.pythonhosted.org/packages/d1/15/082fd0428aab33d2bafa014f3beb241830427ba803a8912a5aaeaf3a5663/pytest-cache-1.0.tar.gz
Collecting execnet>=1.1 (from pytest-xdist->-r requirements.txt (line 6))
  Downloading https://files.pythonhosted.org/packages/77/1a/f69e1f73bc36f55d3273afd1c52936def71ac67d9c5215be3a4ca3a45577/execnet-1.6.0-py2.py3-none-any.whl
Collecting pytest-forked (from pytest-xdist->-r requirements.txt (line 6))
  Downloading https://files.pythonhosted.org/packages/3f/55/ef92c340e723495dbee91d749903d2b7950b49c501943296257246d7d880/pytest_forked-1.0.2-py2.py3-none-any.whl
Collecting coverage>=4.4 (from pytest-cov->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/f8/4e/f28fc04019bac97d301512d904992791569234a06826cd420f78fba9a361/coverage-4.5.3-cp36-cp36m-manylinux1_x86_64.whl (205kB)
    100% |████████████████████████████████| 215kB 4.8MB/s
Collecting werkzeug>=0.11.15 (from tb-nightly<1.14.0a20190604,>=1.14.0a20190603->tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/9f/57/92a497e38161ce40606c27a86759c6b92dd34fcdb33f64171ec559257c02/Werkzeug-0.15.4-py2.py3-none-any.whl (327kB)
    100% |████████████████████████████████| 327kB 3.5MB/s
Collecting markdown>=2.6.8 (from tb-nightly<1.14.0a20190604,>=1.14.0a20190603->tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/c0/4e/fd492e91abdc2d2fcb70ef453064d980688762079397f779758e055f6575/Markdown-3.1.1-py2.py3-none-any.whl (87kB)
    100% |████████████████████████████████| 92kB 6.8MB/s
Collecting setuptools>=41.0.0 (from tb-nightly<1.14.0a20190604,>=1.14.0a20190603->tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/ec/51/f45cea425fd5cb0b0380f5b0f048ebc1da5b417e48d304838c02d6288a1e/setuptools-41.0.1-py2.py3-none-any.whl (575kB)
    100% |████████████████████████████████| 583kB 2.3MB/s
Collecting h5py (from keras-applications>=1.0.6->tensorflow>=2.0.0b0->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/30/99/d7d4fbf2d02bb30fb76179911a250074b55b852d34e98dd452a9f394ac06/h5py-2.9.0-cp36-cp36m-manylinux1_x86_64.whl (2.8MB)
    100% |████████████████████████████████| 2.8MB 601kB/s
Collecting chardet<3.1.0,>=3.0.2 (from requests->keras-tuner->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl (133kB)
    100% |████████████████████████████████| 143kB 6.4MB/s
Collecting idna<2.9,>=2.5 (from requests->keras-tuner->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/14/2c/cd551d81dbe15200be1cf41cd03869a46fe7226e7450af7a6545bfc474c9/idna-2.8-py2.py3-none-any.whl (58kB)
    100% |████████████████████████████████| 61kB 5.9MB/s
Collecting urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 (from requests->keras-tuner->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/e6/60/247f23a7121ae632d62811ba7f273d0e58972d75e58a94d329d51550a47d/urllib3-1.25.3-py2.py3-none-any.whl (150kB)
    100% |████████████████████████████████| 153kB 6.0MB/s
Collecting certifi>=2017.4.17 (from requests->keras-tuner->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/69/1b/b853c7a9d4f6a6d00749e94eb6f3a041e342a885b87340b79c1ef73e3a78/certifi-2019.6.16-py2.py3-none-any.whl (157kB)
    100% |████████████████████████████████| 163kB 5.9MB/s
Collecting zipp>=0.5 (from importlib-metadata>=0.12->pytest>=4.5.0->-r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/da/bd/1a5fdf15aa44231fd09f63ecf175b60f057ae37ec65b343bb009364923f3/zipp-0.5.2-py2.py3-none-any.whl
Collecting pyparsing>=2.0.2 (from packaging->pytest>=4.5.0->-r requirements.txt (line 4))
  Downloading https://files.pythonhosted.org/packages/dd/d9/3ec19e966301a6e25769976999bd7bbe552016f0d32b577dc9d63d2e0c49/pyparsing-2.4.0-py2.py3-none-any.whl (62kB)
    100% |████████████████████████████████| 71kB 6.3MB/s
Collecting apipkg>=1.4 (from execnet>=1.1->pytest-xdist->-r requirements.txt (line 6))
  Downloading https://files.pythonhosted.org/packages/67/08/4815a09603fc800209431bec5b8bd2acf2f95abdfb558a44a42507fb94da/apipkg-1.5-py2.py3-none-any.whl
Building wheels for collected packages: pytest-pep8, absl-py, termcolor, gast, wrapt, psutil, tabulate, terminaltables, pytest-cache
  Running setup.py bdist_wheel for pytest-pep8 ... done
  Stored in directory: /home/lay/.cache/pip/wheels/68/34/52/2a6e08e030cef8b3671898f34cecb12750cc4b96ebfe66fe67
  Running setup.py bdist_wheel for absl-py ... done
  Stored in directory: /home/lay/.cache/pip/wheels/ee/98/38/46cbcc5a93cfea5492d19c38562691ddb23b940176c14f7b48
  Running setup.py bdist_wheel for termcolor ... done
  Stored in directory: /home/lay/.cache/pip/wheels/7c/06/54/bc84598ba1daf8f970247f550b175aaaee85f68b4b0c5ab2c6
  Running setup.py bdist_wheel for gast ... done
  Stored in directory: /home/lay/.cache/pip/wheels/5c/2e/7e/a1d4d4fcebe6c381f378ce7743a3ced3699feb89bcfbdadadd
  Running setup.py bdist_wheel for wrapt ... done
  Stored in directory: /home/lay/.cache/pip/wheels/d7/de/2e/efa132238792efb6459a96e85916ef8597fcb3d2ae51590dfd
  Running setup.py bdist_wheel for psutil ... done
  Stored in directory: /home/lay/.cache/pip/wheels/90/7e/74/bb640d77775e6b6a78bcc3120f9fea4d2a28b2706de1cff37d
  Running setup.py bdist_wheel for tabulate ... done
  Stored in directory: /home/lay/.cache/pip/wheels/2b/67/89/414471314a2d15de625d184d8be6d38a03ae1e983dbda91e84
  Running setup.py bdist_wheel for terminaltables ... done
  Stored in directory: /home/lay/.cache/pip/wheels/30/6b/50/6c75775b681fb36cdfac7f19799888ef9d8813aff9e379663e
  Running setup.py bdist_wheel for pytest-cache ... done
  Stored in directory: /home/lay/.cache/pip/wheels/e4/9e/28/59d0a23800e49808f17920c5922252c661966ca4a36db5ee38
Successfully built pytest-pep8 absl-py termcolor gast wrapt psutil tabulate terminaltables pytest-cache
Installing collected packages: six, werkzeug, setuptools, markdown, grpcio, numpy, protobuf, absl-py, tb-nightly, astor, termcolor, gast, google-pasta, keras-preprocessing, tf-estimator-nightly, wrapt, h5py, keras-applications, tensorflow, scipy, joblib, scikit-learn, colorama, psutil, chardet, idna, urllib3, certifi, requests, tabulate, terminaltables, tqdm, keras-tuner, wcwidth, zipp, importlib-metadata, pluggy, atomicwrites, more-itertools, pyparsing, packaging, py, attrs, pytest, pep8, apipkg, execnet, pytest-cache, pytest-pep8, pytest-forked, pytest-xdist, coverage, pytest-cov
  Found existing installation: setuptools 39.0.1
    Uninstalling setuptools-39.0.1:
      Successfully uninstalled setuptools-39.0.1
  Running setup.py install for keras-tuner ... done
Successfully installed absl-py-0.7.1 apipkg-1.5 astor-0.8.0 atomicwrites-1.3.0 attrs-19.1.0 certifi-2019.6.16 chardet-3.0.4 colorama-0.4.1 coverage-4.5.3 execnet-1.6.0 gast-0.2.2 google-pasta-0.1.7 grpcio-1.22.0 h5py-2.9.0 idna-2.8 importlib-metadata-0.18 joblib-0.13.2 keras-applications-1.0.8 keras-preprocessing-1.1.0 keras-tuner-0.9.0.1562619727 markdown-3.1.1 more-itertools-7.1.0 numpy-1.16.4 packaging-19.0 pep8-1.7.1 pluggy-0.12.0 protobuf-3.8.0 psutil-5.6.3 py-1.8.0 pyparsing-2.4.0 pytest-5.0.1 pytest-cache-1.0 pytest-cov-2.7.1 pytest-forked-1.0.2 pytest-pep8-1.0.6 pytest-xdist-1.29.0 requests-2.22.0 scikit-learn-0.21.2 scipy-1.3.0 setuptools-41.0.1 six-1.12.0 tabulate-0.8.3 tb-nightly-1.14.0a20190603 tensorflow-2.0.0b1 termcolor-1.1.0 terminaltables-3.1.0 tf-estimator-nightly-1.14.0.dev2019060501 tqdm-4.32.2 urllib3-1.25.3 wcwidth-0.1.7 werkzeug-0.15.4 wrapt-1.11.2 zipp-0.5.2
(ak) lay@HL_ML:~/autokeras$ python setup.py install
running install
running bdist_egg
running egg_info
creating autokeras.egg-info
writing autokeras.egg-info/PKG-INFO
writing dependency_links to autokeras.egg-info/dependency_links.txt
writing requirements to autokeras.egg-info/requires.txt
writing top-level names to autokeras.egg-info/top_level.txt
writing manifest file 'autokeras.egg-info/SOURCES.txt'
reading manifest file 'autokeras.egg-info/SOURCES.txt'
writing manifest file 'autokeras.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib
creating build/lib/autokeras
copying autokeras/__init__.py -> build/lib/autokeras
copying autokeras/const.py -> build/lib/autokeras
copying autokeras/utils.py -> build/lib/autokeras
creating build/lib/autokeras/auto
copying autokeras/auto/__init__.py -> build/lib/autokeras/auto
copying autokeras/auto/auto_model.py -> build/lib/autokeras/auto
copying autokeras/auto/image.py -> build/lib/autokeras/auto
copying autokeras/auto/tuner.py -> build/lib/autokeras/auto
creating build/lib/autokeras/hypermodel
copying autokeras/hypermodel/__init__.py -> build/lib/autokeras/hypermodel
copying autokeras/hypermodel/hyper_block.py -> build/lib/autokeras/hypermodel
copying autokeras/hypermodel/hyper_head.py -> build/lib/autokeras/hypermodel
copying autokeras/hypermodel/hyper_node.py -> build/lib/autokeras/hypermodel
copying autokeras/hypermodel/processor.py -> build/lib/autokeras/hypermodel
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/autokeras
copying build/lib/autokeras/__init__.py -> build/bdist.linux-x86_64/egg/autokeras
creating build/bdist.linux-x86_64/egg/autokeras/auto
copying build/lib/autokeras/auto/__init__.py -> build/bdist.linux-x86_64/egg/autokeras/auto
copying build/lib/autokeras/auto/auto_model.py -> build/bdist.linux-x86_64/egg/autokeras/auto
copying build/lib/autokeras/auto/image.py -> build/bdist.linux-x86_64/egg/autokeras/auto
copying build/lib/autokeras/auto/tuner.py -> build/bdist.linux-x86_64/egg/autokeras/auto
copying build/lib/autokeras/const.py -> build/bdist.linux-x86_64/egg/autokeras
creating build/bdist.linux-x86_64/egg/autokeras/hypermodel
copying build/lib/autokeras/hypermodel/__init__.py -> build/bdist.linux-x86_64/egg/autokeras/hypermodel
copying build/lib/autokeras/hypermodel/hyper_block.py -> build/bdist.linux-x86_64/egg/autokeras/hypermodel
copying build/lib/autokeras/hypermodel/hyper_head.py -> build/bdist.linux-x86_64/egg/autokeras/hypermodel
copying build/lib/autokeras/hypermodel/hyper_node.py -> build/bdist.linux-x86_64/egg/autokeras/hypermodel
copying build/lib/autokeras/hypermodel/processor.py -> build/bdist.linux-x86_64/egg/autokeras/hypermodel
copying build/lib/autokeras/utils.py -> build/bdist.linux-x86_64/egg/autokeras
byte-compiling build/bdist.linux-x86_64/egg/autokeras/__init__.py to __init__.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/auto/__init__.py to __init__.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/auto/auto_model.py to auto_model.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/auto/image.py to image.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/auto/tuner.py to tuner.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/const.py to const.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/hypermodel/__init__.py to __init__.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/hypermodel/hyper_block.py to hyper_block.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/hypermodel/hyper_head.py to hyper_head.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/hypermodel/hyper_node.py to hyper_node.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/hypermodel/processor.py to processor.cpython-36.pyc
byte-compiling build/bdist.linux-x86_64/egg/autokeras/utils.py to utils.cpython-36.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying autokeras.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying autokeras.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying autokeras.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying autokeras.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying autokeras.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
zip_safe flag not set; analyzing archive contents...
creating dist
creating 'dist/autokeras-1.0.0-py3.6.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing autokeras-1.0.0-py3.6.egg
Copying autokeras-1.0.0-py3.6.egg to /home/lay/ak/lib/python3.6/site-packages
Adding autokeras 1.0.0 to easy-install.pth file

Installed /home/lay/ak/lib/python3.6/site-packages/autokeras-1.0.0-py3.6.egg
Processing dependencies for autokeras==1.0.0
Searching for scikit-learn==0.20.2
Reading https://pypi.org/simple/scikit-learn/
Downloading https://files.pythonhosted.org/packages/0d/3a/b92670f5c368c20329ecc4c255993fae7934564d485c3ed7ea7b8da7f741/scikit_learn-0.20.2-cp36-cp36m-manylinux1_x86_64.whl#sha256=eb7ddbdf33eb822fdc916819b0ab7009d954eb43c3a78e7dd2ec5455e074922a
Best match: scikit-learn 0.20.2
Processing scikit_learn-0.20.2-cp36-cp36m-manylinux1_x86_64.whl
Installing scikit_learn-0.20.2-cp36-cp36m-manylinux1_x86_64.whl to /home/lay/ak/lib/python3.6/site-packages
writing requirements to /home/lay/ak/lib/python3.6/site-packages/scikit_learn-0.20.2-py3.6-linux-x86_64.egg/EGG-INFO/requires.txt
Adding scikit-learn 0.20.2 to easy-install.pth file

Installed /home/lay/ak/lib/python3.6/site-packages/scikit_learn-0.20.2-py3.6-linux-x86_64.egg
Searching for tensorflow==2.0.0b0
Reading https://pypi.org/simple/tensorflow/
Downloading https://files.pythonhosted.org/packages/6c/19/0d0c7f240db7bcd6b83783b9a89a67f38584d100e23ad5ae93114be92232/tensorflow-2.0.0b0-cp36-cp36m-manylinux1_x86_64.whl#sha256=b75cfa72e858ebaeb9c4edbaef8a51bac5304846e92f13ff8d87b7a891629da5
Best match: tensorflow 2.0.0b0
Processing tensorflow-2.0.0b0-cp36-cp36m-manylinux1_x86_64.whl
Installing tensorflow-2.0.0b0-cp36-cp36m-manylinux1_x86_64.whl to /home/lay/ak/lib/python3.6/site-packages
writing requirements to /home/lay/ak/lib/python3.6/site-packages/tensorflow-2.0.0b0-py3.6-linux-x86_64.egg/EGG-INFO/requires.txt
Adding tensorflow 2.0.0b0 to easy-install.pth file
Installing freeze_graph script to /home/lay/ak/bin
Installing saved_model_cli script to /home/lay/ak/bin
Installing tensorboard script to /home/lay/ak/bin
Installing tf_upgrade_v2 script to /home/lay/ak/bin
Installing tflite_convert script to /home/lay/ak/bin
Installing toco script to /home/lay/ak/bin
Installing toco_from_protos script to /home/lay/ak/bin

Installed /home/lay/ak/lib/python3.6/site-packages/tensorflow-2.0.0b0-py3.6-linux-x86_64.egg
Searching for scipy==1.3.0
Best match: scipy 1.3.0
Adding scipy 1.3.0 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for numpy==1.16.4
Best match: numpy 1.16.4
Adding numpy 1.16.4 to easy-install.pth file
Installing f2py script to /home/lay/ak/bin
Installing f2py3 script to /home/lay/ak/bin
Installing f2py3.6 script to /home/lay/ak/bin

Using /home/lay/ak/lib/python3.6/site-packages
Searching for wrapt==1.11.2
Best match: wrapt 1.11.2
Adding wrapt 1.11.2 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for wheel==0.33.4
Best match: wheel 0.33.4
Adding wheel 0.33.4 to easy-install.pth file
Installing wheel script to /home/lay/ak/bin

Using /home/lay/ak/lib/python3.6/site-packages
Searching for tf-estimator-nightly==1.14.0.dev2019060501
Best match: tf-estimator-nightly 1.14.0.dev2019060501
Adding tf-estimator-nightly 1.14.0.dev2019060501 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for termcolor==1.1.0
Best match: termcolor 1.1.0
Adding termcolor 1.1.0 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for tb-nightly==1.14.0a20190603
Best match: tb-nightly 1.14.0a20190603
Adding tb-nightly 1.14.0a20190603 to easy-install.pth file
Installing tensorboard script to /home/lay/ak/bin

Using /home/lay/ak/lib/python3.6/site-packages
Searching for six==1.12.0
Best match: six 1.12.0
Adding six 1.12.0 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for protobuf==3.8.0
Best match: protobuf 3.8.0
Adding protobuf 3.8.0 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for Keras-Preprocessing==1.1.0
Best match: Keras-Preprocessing 1.1.0
Adding Keras-Preprocessing 1.1.0 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for Keras-Applications==1.0.8
Best match: Keras-Applications 1.0.8
Adding Keras-Applications 1.0.8 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for grpcio==1.22.0
Best match: grpcio 1.22.0
Adding grpcio 1.22.0 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for google-pasta==0.1.7
Best match: google-pasta 0.1.7
Adding google-pasta 0.1.7 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for gast==0.2.2
Best match: gast 0.2.2
Adding gast 0.2.2 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for astor==0.8.0
Best match: astor 0.8.0
Adding astor 0.8.0 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for absl-py==0.7.1
Best match: absl-py 0.7.1
Adding absl-py 0.7.1 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for setuptools==41.0.1
Best match: setuptools 41.0.1
Adding setuptools 41.0.1 to easy-install.pth file
Installing easy_install script to /home/lay/ak/bin
Installing easy_install-3.6 script to /home/lay/ak/bin

Using /home/lay/ak/lib/python3.6/site-packages
Searching for Markdown==3.1.1
Best match: Markdown 3.1.1
Adding Markdown 3.1.1 to easy-install.pth file
Installing markdown_py script to /home/lay/ak/bin

Using /home/lay/ak/lib/python3.6/site-packages
Searching for Werkzeug==0.15.4
Best match: Werkzeug 0.15.4
Adding Werkzeug 0.15.4 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Searching for h5py==2.9.0
Best match: h5py 2.9.0
Adding h5py 2.9.0 to easy-install.pth file

Using /home/lay/ak/lib/python3.6/site-packages
Finished processing dependencies for autokeras==1.0.0
(ak) lay@HL_ML:~/autokeras$ history
    1  sudo vi /etc/apt/sources.list
    2  sudo apt-get update; sudo apt-get upgrade -y; git clone https://github.com/keras-team/autokeras.git; sudo apt-get insatll python3-venv;
    3  sudo apt-get install python3-venv;
    4  python3 -m venv ak
    5  source ak/bin/activate
    6  cd autokeras/
    7  sudo apt-get install gcc; sudo apt-get install python3-dev; pip install wheel;
    8  sudo apt-get install gcc -y; sudo apt-get install python3-dev -y; pip install wheel;
    9  pip install -r requirements.txt
   10  python setup.py install
   11  history
(ak) lay@HL_ML:~/autokeras$  
Lay4U commented 5 years ago

when I try in this order first, change apt server and sudo apt-get update; sudo apt-get upgrade -y; git clone https://github.com/keras-team/autokeras.git; sudo apt-get install python3-venv -y; python3 -m venv ak; source ak/bin/activate; cd autokeras/; sudo apt-get install gcc -y; sudo apt-get install python3-dev -y; pip install wheel; pip install -r requirements.txt; python setup.py install;

then Process finished with exit code 0 with test_auto_model, test_hyperblock, test_image, test_processor

how can I try input something ?

stale[bot] commented 5 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.