Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is not working under CentOS 7 after install from pip #10

Closed
morokin opened this issue Sep 28, 2017 · 3 comments
Closed

Is not working under CentOS 7 after install from pip #10

morokin opened this issue Sep 28, 2017 · 3 comments
Assignees

Comments

@morokin
Copy link

morokin commented Sep 28, 2017

Hi,
I'm experiencing some strange issues with module and there are no other issues with any other modules:

Installed from pip without issues:

# pip install clickhouse-driver[lz4]

Collecting clickhouse-driver[lz4]
  Using cached clickhouse-driver-0.0.6.tar.gz
Requirement already satisfied (use --upgrade to upgrade): six in /usr/lib/python2.7/site-packages (from clickhouse-driver[lz4])
Requirement already satisfied (use --upgrade to upgrade): enum34 in /usr/lib/python2.7/site-packages (from clickhouse-driver[lz4])
Requirement already satisfied (use --upgrade to upgrade): lz4 in /usr/lib64/python2.7/site-packages (from clickhouse-driver[lz4])
Collecting clickhouse-cityhash==1.0.2 (from clickhouse-driver[lz4])
  Using cached clickhouse-cityhash-1.0.2.tar.gz
Installing collected packages: clickhouse-cityhash, clickhouse-driver
  Running setup.py install for clickhouse-cityhash ... done
  Running setup.py install for clickhouse-driver ... done
Successfully installed clickhouse-cityhash-1.0.2 clickhouse-driver-0.0.6
# pip show clickhouse_driver

Name: clickhouse-driver
Version: 0.0.6
Summary: Python driver with native interface for ClickHouse
Home-page: https://github.com/mymarilyn/clickhouse-driver
Author: Konstantin Lebedev
Author-email: [email protected]
License: MIT
Location: /usr/lib/python2.7/site-packages
Requires: six, enum34
# ll /usr/lib/python2.7/site-packages/clickhouse_driver
total 164
-rw-r--r-- 1 root root  2155 Jun 30 18:36 block.py
-rw-r--r-- 1 root root  3109 Sep 28 17:42 block.pyc
-rw-r--r-- 1 root root   693 May 22 18:29 blockstreamprofileinfo.py
-rw-r--r-- 1 root root  1247 Sep 28 17:42 blockstreamprofileinfo.pyc
-rw-r--r-- 1 root root  2165 May 22 18:29 clientinfo.py
-rw-r--r-- 1 root root  2856 Sep 28 17:42 clientinfo.pyc
-rw-r--r-- 1 root root  7666 Sep 18 19:58 client.py
-rw-r--r-- 1 root root  7783 Sep 28 17:42 client.pyc
drwxr-xr-x 2 root root  4096 Sep 28 17:42 columns
drwxr-xr-x 2 root root  4096 Sep 28 17:42 compression
-rw-r--r-- 1 root root 11992 Sep 16 19:59 connection.py
-rw-r--r-- 1 root root 12551 Sep 28 17:42 connection.pyc
-rw-r--r-- 1 root root   596 Sep 16 20:24 defines.py
-rw-r--r-- 1 root root   885 Sep 28 17:42 defines.pyc
-rw-r--r-- 1 root root  2899 Sep 16 20:24 errors.py
-rw-r--r-- 1 root root  6561 Sep 28 17:42 errors.pyc
-rw-r--r-- 1 root root    68 Sep 19 18:00 __init__.py
-rw-r--r-- 1 root root   443 Sep 28 17:42 __init__.pyc
-rw-r--r-- 1 root root   522 May 22 18:29 progress.py
-rw-r--r-- 1 root root  1113 Sep 28 17:42 progress.pyc
-rw-r--r-- 1 root root  2002 Aug 31 18:09 protocol.py
-rw-r--r-- 1 root root  2645 Sep 28 17:42 protocol.pyc
-rw-r--r-- 1 root root   186 May 22 18:29 queryprocessingstage.py
-rw-r--r-- 1 root root   590 Sep 28 17:42 queryprocessingstage.pyc
-rw-r--r-- 1 root root  1686 Sep  4 20:49 reader.py
-rw-r--r-- 1 root root  3676 Sep 28 17:42 reader.pyc
-rw-r--r-- 1 root root   717 May 22 18:29 readhelpers.py
-rw-r--r-- 1 root root   945 Sep 28 17:42 readhelpers.pyc
drwxr-xr-x 2 root root  4096 Sep 28 17:42 settings
drwxr-xr-x 2 root root  4096 Sep 28 17:42 streams
drwxr-xr-x 2 root root  4096 Sep 28 17:42 util
-rw-r--r-- 1 root root  1770 Aug 31 18:09 writer.py
-rw-r--r-- 1 root root  3882 Sep 28 17:42 writer.pyc

Example code test.py

#! /usr/bin/env python

from clickhouse_driver.client import Client

ch_db = Client(host='clickhouse-host', database='test_db',
               compression=True)
query = 'select * from test_table'
result = ch_db.execute(query)

print result

Output:

Traceback (most recent call last):
  File "./test.py", line 3, in <module>
    from clickhouse_driver.client import Client
ImportError: No module named client
@morokin
Copy link
Author

morokin commented Sep 28, 2017

Hi again,

Strace output

strace /usr/bin/python2.7 -c "from clickhouse_driver.client import Client"

execve("/usr/bin/python2.7", ["/usr/bin/python2.7", "-c", "from clickhouse_driver.client im"...], [/* 25 vars */]) = 0
brk(NULL)                               = 0xba0000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bd000
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=19797, ...}) = 0
mmap(NULL, 19797, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f2c550b8000
close(3)                                = 0
open("/lib64/libpython2.7.so.1.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\f\4\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1847240, ...}) = 0
mmap(NULL, 3978824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2c54ad1000
mprotect(0x7f2c54c4e000, 2097152, PROT_NONE) = 0
mmap(0x7f2c54e4e000, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17d000) = 0x7f2c54e4e000
mmap(0x7f2c54e8e000, 58952, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f2c54e8e000
close(3)                                = 0
open("/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0m\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=144792, ...}) = 0
mmap(NULL, 2208904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2c548b5000
mprotect(0x7f2c548cc000, 2093056, PROT_NONE) = 0
mmap(0x7f2c54acb000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7f2c54acb000
mmap(0x7f2c54acd000, 13448, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f2c54acd000
close(3)                                = 0
open("/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\16\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=19776, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550b7000
mmap(NULL, 2109744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2c546b1000
mprotect(0x7f2c546b3000, 2097152, PROT_NONE) = 0
mmap(0x7f2c548b3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2c548b3000
close(3)                                = 0
open("/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\16\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=14872, ...}) = 0
mmap(NULL, 2105616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2c544ae000
mprotect(0x7f2c544b0000, 2093056, PROT_NONE) = 0
mmap(0x7f2c546af000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f2c546af000
close(3)                                = 0
open("/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0pS\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1139680, ...}) = 0
mmap(NULL, 3150136, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2c541ac000
mprotect(0x7f2c542ad000, 2093056, PROT_NONE) = 0
mmap(0x7f2c544ac000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x100000) = 0x7f2c544ac000
close(3)                                = 0
open("/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\35\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=2127336, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550b6000
mmap(NULL, 3940800, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2c53de9000
mprotect(0x7f2c53fa1000, 2097152, PROT_NONE) = 0
mmap(0x7f2c541a1000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b8000) = 0x7f2c541a1000
mmap(0x7f2c541a7000, 16832, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f2c541a7000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550b5000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550b3000
arch_prctl(ARCH_SET_FS, 0x7f2c550b3740) = 0
mprotect(0x7f2c541a1000, 16384, PROT_READ) = 0
mprotect(0x7f2c544ac000, 4096, PROT_READ) = 0
mprotect(0x7f2c546af000, 4096, PROT_READ) = 0
mprotect(0x7f2c548b3000, 4096, PROT_READ) = 0
mprotect(0x7f2c54acb000, 4096, PROT_READ) = 0
mprotect(0x7f2c54e4e000, 8192, PROT_READ) = 0
mprotect(0x600000, 4096, PROT_READ)     = 0
mprotect(0x7f2c550be000, 4096, PROT_READ) = 0
munmap(0x7f2c550b8000, 19797)           = 0
set_tid_address(0x7f2c550b3a10)         = 1829
set_robust_list(0x7f2c550b3a20, 24)     = 0
rt_sigaction(SIGRTMIN, {0x7f2c548bb7e0, [], SA_RESTORER|SA_SIGINFO, 0x7f2c548c45e0}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x7f2c548bb870, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f2c548c45e0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
brk(NULL)                               = 0xba0000
brk(0xbc1000)                           = 0xbc1000
brk(NULL)                               = 0xbc1000
ioctl(0, TCGETS, {B9600 opost isig icanon echo ...}) = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c55072000
brk(NULL)                               = 0xbc1000
brk(0xbe2000)                           = 0xbe2000
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
fstat(2, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 0), ...}) = 0
readlink("/usr/bin/python2.7", 0x7ffc6717e4d0, 4096) = -1 EINVAL (Invalid argument)
stat("/usr/bin/Modules/Setup", 0x7ffc6717c360) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.7/os.py", 0x7ffc6717c350) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.7/os.pyc", 0x7ffc6717c350) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/os.py", {st_mode=S_IFREG|0644, st_size=25769, ...}) = 0
stat("/usr/bin/pybuilddir.txt", 0x7ffc6717c360) = -1 ENOENT (No such file or directory)
stat("/usr/bin/lib64/python2.7/lib-dynload", 0x7ffc6717c360) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c55031000
rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x7f2c548c45e0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXFSZ, {SIG_IGN, [], SA_RESTORER, 0x7f2c548c45e0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGHUP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGILL, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTRAP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGABRT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGBUS, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGFPE, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGKILL, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGUSR1, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSEGV, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGUSR2, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPIPE, NULL, {SIG_IGN, [], SA_RESTORER, 0x7f2c548c45e0}, 8) = 0
rt_sigaction(SIGALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSTKFLT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGCONT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSTOP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTSTP, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTTIN, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTTOU, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGURG, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXCPU, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGXFSZ, NULL, {SIG_IGN, [], SA_RESTORER, 0x7f2c548c45e0}, 8) = 0
rt_sigaction(SIGVTALRM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPROF, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGWINCH, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGIO, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGPWR, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSYS, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_2, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_3, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_4, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_5, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_6, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_7, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_8, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_9, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_10, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_11, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_12, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_13, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_14, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_15, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_16, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_17, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_18, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_19, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_20, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_21, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_22, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_23, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_24, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_25, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_26, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_27, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_28, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_29, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_30, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_31, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGRT_32, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGINT, {0x7f2c54be7540, [], SA_RESTORER, 0x7f2c548c45e0}, {SIG_DFL, [], 0}, 8) = 0
brk(NULL)                               = 0xbe2000
brk(0xc03000)                           = 0xc03000
stat("/usr/lib64/python27.zip", 0x7ffc6717ae50) = -1 ENOENT (No such file or directory)
stat("/usr/lib64", {st_mode=S_IFDIR|0555, st_size=24576, ...}) = 0
stat("/usr/lib64/python27.zip", 0x7ffc6717dea0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.7/", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.7/site", 0x7ffc6717e060) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sitemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=20078, ...}) = 0
open("/usr/lib64/python2.7/site.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=19568, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(4, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sp\1\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=19568, ...}) = 0
read(4, "\1\0\0\0R\0\0\0\0t\5\0\0\0isdirR\10\0\0\0R\24\0\0\0t\t\0"..., 12288) = 12288
read(4, "\0\0\0C\0\0\0sg\0\0\0y\20\0d\1\0d\2\0l\0\0}\0\0WnP\0\4"..., 4096) = 3184
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
stat("/usr/lib64/python2.7/os", 0x7ffc6717dae0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/os.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/osmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/os.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=25769, ...}) = 0
open("/usr/lib64/python2.7/os.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=25557, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(5, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0s\372\6\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=25557, ...}) = 0
read(5, "ive.\n\n    N(\t\0\0\0R\t\0\0\0t\5\0\0\0splitt"..., 20480) = 20480
read(5, "\"\0\0\0t\24\0\0\0builtin_module_namest\6\0"..., 4096) = 981
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
open("/proc/meminfo", O_RDONLY|O_CLOEXEC) = 5
fstat(5, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(5, "MemTotal:        1014736 kB\nMemF"..., 1024) = 1024
close(5)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
brk(NULL)                               = 0xc03000
brk(0xc25000)                           = 0xc25000
stat("/usr/lib64/python2.7/posixpath", 0x7ffc6717d560) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/posixpath.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/posixpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/posixpath.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=13591, ...}) = 0
open("/usr/lib64/python2.7/posixpath.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=11297, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(6, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0&\0\0\0@\0\0\0s\31\2\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=11297, ...}) = 0
read(6, "ISLNKt\7\0\0\0st_mode(\2\0\0\0R3\0\0\0t\2\0\0\0"..., 4096) = 4096
read(6, "\0\0R6\0\0\0(\7\0\0\0R3\0\0\0Rn\0\0\0R8\0\0\0t\1\0\0\0"..., 4096) = 3105
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
stat("/usr/lib64/python2.7/stat", 0x7ffc6717cfe0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/stat.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/statmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/stat.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=1842, ...}) = 0
open("/usr/lib64/python2.7/stat.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=2751, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(7, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\1\0\0\0@\0\0\0s{\1\0\0d\0"..., 4096) = 2751
fstat(7, {st_mode=S_IFREG|0644, st_size=2751, ...}) = 0
read(7, "", 4096)                       = 0
mmap(NULL, 200704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c55000000
close(7)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(6)                                = 0
stat("/usr/lib64/python2.7/genericpath", 0x7ffc6717cfe0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/genericpath.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/genericpathmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/genericpath.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=3015, ...}) = 0
open("/usr/lib64/python2.7/genericpath.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=3263, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(7, "\3\363\r\nE\302\203Yc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\221\0\0\0d\0"..., 4096) = 3263
fstat(7, {st_mode=S_IFREG|0644, st_size=3263, ...}) = 0
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(6)                                = 0
stat("/usr/lib64/python2.7/warnings", 0x7ffc6717cfe0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/warnings.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/warningsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/warnings.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=14044, ...}) = 0
open("/usr/lib64/python2.7/warnings.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=13150, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(7, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\7\0\0\0@\0\0\0sS\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=13150, ...}) = 0
read(7, "yss\7\0\0\0defaults\6\0\0\0modules\4\0\0\0on"..., 8192) = 8192
read(7, "\0\0(\0\0\0\0s \0\0\0/usr/lib64/python2.7"..., 4096) = 862
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
stat("/usr/lib64/python2.7/linecache", 0x7ffc6717ca60) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/linecache.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/linecachemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/linecache.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=3964, ...}) = 0
open("/usr/lib64/python2.7/linecache.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=3211, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(8, "\3\363\r\nE\302\203Yc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sp\0\0\0d\0"..., 4096) = 3211
fstat(8, {st_mode=S_IFREG|0644, st_size=3211, ...}) = 0
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(7)                                = 0
stat("/usr/lib64/python2.7/types", 0x7ffc6717ca60) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/types.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/typesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/types.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=2040, ...}) = 0
open("/usr/lib64/python2.7/types.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=2506, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(8, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s/\2\0\0d\0"..., 4096) = 2506
fstat(8, {st_mode=S_IFREG|0644, st_size=2506, ...}) = 0
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/lib64/python2.7/UserDict", 0x7ffc6717d560) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/UserDict.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/UserDictmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/UserDict.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=5811, ...}) = 0
open("/usr/lib64/python2.7/UserDict.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=8820, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(6, "\3\363\r\nE\302\203Yc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sb\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=8820, ...}) = 0
read(6, "/lib64/python2.7/UserDict.pyR*\0\0"..., 4096) = 4096
read(6, "\6\0\0\0R\2\0\0\0R\v\0\0\0R8\0\0\0R\6\0\0\0R\35\0\0\0R\f\0"..., 4096) = 628
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
stat("/usr/lib64/python2.7/_abcoll", 0x7ffc6717cfe0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/_abcoll.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/_abcollmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/_abcoll.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=17865, ...}) = 0
open("/usr/lib64/python2.7/_abcoll.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=24982, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(7, "\3\363\r\nE\302\203Yc\0\0\0\0\0\0\0\0\20\0\0\0@\0\0\0sI\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=24982, ...}) = 0
read(7, "\1\0\0\0R(\0\0\0(\2\0\0\0R\34\0\0\0t\1\0\0\0x(\0\0\0\0(\0"..., 20480) = 20480
read(7, "\4\17\5\t\4\t\6\t\5\f\10\t\6(\0\0\0\0(\0\0\0\0(\0\0\0\0(\0\0\0"..., 4096) = 406
read(7, "", 4096)                       = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c54fbf000
close(7)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
stat("/usr/lib64/python2.7/abc", 0x7ffc6717ca60) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/abc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/abcmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/abc.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=7145, ...}) = 0
open("/usr/lib64/python2.7/abc.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=6143, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(8, "\3\363\r\nE\302\203Yc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s}\0\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=6143, ...}) = 0
read(8, "abc.pyt\10\0\0\0registeri\0\0\0s\20\0\0\0\0\2\30\1"..., 4096) = 2047
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
stat("/usr/lib64/python2.7/_weakrefset", 0x7ffc6717c4e0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/_weakrefset.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/_weakrefsetmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/_weakrefset.py", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=5607, ...}) = 0
open("/usr/lib64/python2.7/_weakrefset.pyc", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=9477, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(9, "\3\363\r\nE\302\203Yc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0sI\0\0\0d\0"..., 4096) = 4096
fstat(9, {st_mode=S_IFREG|0644, st_size=9477, ...}) = 0
read(9, "sr/lib64/python2.7/_weakrefset.p"..., 4096) = 4096
read(9, "\0}\1\0t\0\0|\1\0\210\0\0j\1\0\203\2\0V\1q\3\0d\0\0S(\1\0\0"..., 4096) = 1285
read(9, "", 4096)                       = 0
close(9)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(8)                                = 0
close(7)                                = 0
close(6)                                = 0
close(5)                                = 0
stat("/usr/lib64/python2.7/copy_reg", 0x7ffc6717d560) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/copy_reg.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/copy_regmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/copy_reg.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=6800, ...}) = 0
open("/usr/lib64/python2.7/copy_reg.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=5113, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(6, "\3\363\r\nE\302\203Yc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s\326\0\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=5113, ...}) = 0
read(6, "e for key %s(\5\0\0\0t\3\0\0\0intt\n\0\0\0Va"..., 4096) = 1017
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/lib64/python2.7/traceback", 0x7ffc6717dae0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/traceback.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/tracebackmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/traceback.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=11255, ...}) = 0
open("/usr/lib64/python2.7/traceback.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=11623, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(5, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\16\0\0\0@\0\0\0sB\1\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=11623, ...}) = 0
read(5, "None.\n    R!\0\0\0i\0\0\0\0i\1\0\0\0N(\20\0\0\0R"..., 4096) = 4096
read(5, "\1\0\203\5\0\1Wd\1\0d\1\0\4}\2\0\4}\3\0}\4\0Xd\1\0S(\2\0"..., 4096) = 3431
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.7", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.7", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.7/sysconfig", 0x7ffc6717d970) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sysconfig.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sysconfigmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sysconfig.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=22405, ...}) = 0
open("/usr/lib64/python2.7/sysconfig.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=17645, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(5, "\3\363\r\nN\302\203Yc\0\0\0\0\0\0\0\0\10\0\0\0@\0\0\0s\v\5\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=17645, ...}) = 0
brk(NULL)                               = 0xc25000
brk(0xc47000)                           = 0xc47000
read(5, "posixR\f\0\0\0(\2\0\0\0s\5\0\0\0posixs\2\0\0\0nt"..., 12288) = 12288
read(5, "\1\f\1\f\1c\0\0\0\0\0\0\0\0\3\0\0\0C\0\0\0sd\0\0\0d\1\0t\0"..., 4096) = 1261
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/bin", {st_mode=S_IFDIR|0555, st_size=20480, ...}) = 0
lstat("/usr/bin/python2.7", {st_mode=S_IFREG|0755, st_size=7136, ...}) = 0
stat("/usr/bin/Modules/Setup.dist", 0x7ffc6717e490) = -1 ENOENT (No such file or directory)
stat("/usr/bin/Modules/Setup.local", 0x7ffc6717e490) = -1 ENOENT (No such file or directory)
close(4)                                = 0
stat("/usr/bin/Modules/Setup.dist", 0x7ffc6717ea10) = -1 ENOENT (No such file or directory)
stat("/usr/bin/Modules/Setup.local", 0x7ffc6717ea10) = -1 ENOENT (No such file or directory)
geteuid()                               = 0
getuid()                                = 0
getegid()                               = 0
getgid()                                = 0
stat("/usr/lib64/python2.7/re", 0x7ffc6717d1a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/re.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/remodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/re.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=12959, ...}) = 0
open("/usr/lib64/python2.7/re.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=13094, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(5, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\27\0\0\0@\0\0\0s'\2\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=13094, ...}) = 0
read(5, "  Match a regular expression pat"..., 8192) = 8192
read(5, "\0\0\1\6\1\t\1\25\1\6\1\3\1\t\1\6\1\4\1\f\1\f\1\4\1\30\1\17\1\t\1\30"..., 4096) = 806
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
stat("/usr/lib64/python2.7/sre_compile", 0x7ffc6717cc20) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sre_compile.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sre_compilemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sre_compile.py", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=16377, ...}) = 0
open("/usr/lib64/python2.7/sre_compile.pyc", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=11016, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(6, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\5\0\0\0@\0\0\0s~\1\0\0d\0"..., 4096) = 4096
fstat(6, {st_mode=S_IFREG|0644, st_size=11016, ...}) = 0
read(6, "\24\1\16\1\27\2\16\1\f\0\n\1\16\1\16\1\24\1\24\1\f\1\21\2\21\1\f\1\n\1\16\1"..., 4096) = 4096
read(6, "t\7\0k\10\0r`\2g\0\0}\f\0|\f\0j\1\0}\r\0xU\0|\v\0d\2"..., 4096) = 2824
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
stat("/usr/lib64/python2.7/sre_parse", 0x7ffc6717c6a0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sre_parse.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sre_parsemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sre_parse.py", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=27488, ...}) = 0
open("/usr/lib64/python2.7/sre_parse.pyc", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=19438, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(7, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\4\0\0\0@\0\0\0s\332\2\0\0d\0"..., 4096) = 4096
fstat(7, {st_mode=S_IFREG|0644, st_size=19438, ...}) = 0
read(7, "sr/lib64/python2.7/sre_parse.pyt"..., 12288) = 12288
read(7, "t\0\0|\0\0\203\1\0}\2\0|\2\0j\1\0}\3\0g\0\0}\4\0|\4\0j\2"..., 4096) = 3054
read(7, "", 4096)                       = 0
close(7)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
stat("/usr/lib64/python2.7/sre_constants", 0x7ffc6717c120) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sre_constants.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sre_constantsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sre_constants.py", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=7113, ...}) = 0
open("/usr/lib64/python2.7/sre_constants.pyc", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(8, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0 \0\0\0@\0\0\0s\371\4\0\0d\0"..., 4096) = 4096
fstat(8, {st_mode=S_IFREG|0644, st_size=6117, ...}) = 0
read(8, "efine SRE_INFO_CHARSET %d\nt\4\0\0\0d"..., 4096) = 2021
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(7)                                = 0
mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c54f7e000
close(6)                                = 0
close(5)                                = 0
close(4)                                = 0
stat("/usr/lib64/python2.7/_sysconfigdata", 0x7ffc6717d030) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/_sysconfigdata.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/_sysconfigdatamodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/_sysconfigdata.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=17968, ...}) = 0
open("/usr/lib64/python2.7/_sysconfigdata.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=21195, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(5, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\271\16\0\0i\31"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=21195, ...}) = 0
brk(NULL)                               = 0xc47000
brk(0xc69000)                           = 0xc69000
read(5, "uilddir/build/BUILD/Python-2.7.5"..., 16384) = 16384
read(5, "\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7"..., 4096) = 715
read(5, "", 4096)                       = 0
brk(NULL)                               = 0xc69000
brk(NULL)                               = 0xc69000
brk(0xc64000)                           = 0xc64000
brk(NULL)                               = 0xc64000
close(5)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(4)                                = 0
brk(NULL)                               = 0xc64000
brk(0xc85000)                           = 0xc85000
brk(NULL)                               = 0xc85000
brk(NULL)                               = 0xc85000
brk(0xc76000)                           = 0xc76000
brk(NULL)                               = 0xc76000
stat("/root/.local/lib/python2.7/site-packages", 0x7ffc6717ea10) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib64/python2.7/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
getdents(4, /* 55 entries */, 32768)    = 2128
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
stat("/usr/lib/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/usr/lib/python2.7/site-packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 4
getdents(4, /* 80 entries */, 32768)    = 3240
getdents(4, /* 0 entries */, 32768)     = 0
close(4)                                = 0
stat("/usr/lib/site-python", 0x7ffc6717ea10) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/sitecustomize", 0x7ffc6717d800) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.7/plat-linux2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.7/plat-linux2/sitecustomize", 0x7ffc6717d800) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/lib-tk", 0x7ffc6717a5f0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.7/lib-tk", 0x7ffc6717d640) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/lib-old", 0x7ffc6717a5f0) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
stat("/usr/lib64/python2.7/lib-old", 0x7ffc6717d640) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.7/lib-dynload", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.7/lib-dynload/sitecustomize", 0x7ffc6717d800) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.7/site-packages/sitecustomize", 0x7ffc6717d800) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.7/site-packages", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib/python2.7/site-packages/sitecustomize", 0x7ffc6717d800) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.7/site-packages/sitecustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.7/site-packages/sitecustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.7/site-packages/sitecustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.7/site-packages/sitecustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/usercustomize", 0x7ffc6717d800) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/plat-linux2/usercustomize", 0x7ffc6717d800) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/lib-dynload/usercustomize", 0x7ffc6717d800) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/site-packages/usercustomize", 0x7ffc6717d800) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib/python2.7/site-packages/usercustomize", 0x7ffc6717d800) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.7/site-packages/usercustomize.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.7/site-packages/usercustomizemodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.7/site-packages/usercustomize.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.7/site-packages/usercustomize.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(3)                                = 0
open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=3489392, ...}) = 0
mmap(NULL, 3489392, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f2c53a95000
close(3)                                = 0
stat("/usr/lib64/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.7/encodings/__init__.py", {st_mode=S_IFREG|0644, st_size=5698, ...}) = 0
stat("/usr/lib64/python2.7/encodings/__init__", 0x7ffc6717e180) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=5698, ...}) = 0
open("/usr/lib64/python2.7/encodings/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=4378, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(4, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\216\0\0\0d\0"..., 4096) = 4096
fstat(4, {st_mode=S_IFREG|0644, st_size=4378, ...}) = 0
read(4, "\1\26\1\24\1\24\1$\1$\0016\0016\1\3\1\3\1\26\1\"\0015\1\22\3\n\4\3\1\20"..., 4096) = 282
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
stat("/usr/lib64/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.7/encodings", {st_mode=S_IFDIR|0755, st_size=16384, ...}) = 0
stat("/usr/lib64/python2.7/encodings/codecs", 0x7ffc6717dc00) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/codecs.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/codecs.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/codecs", 0x7ffc6717dc00) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/codecs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/codecsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/codecs.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=35266, ...}) = 0
open("/usr/lib64/python2.7/codecs.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=36602, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(5, "\3\363\r\nE\302\203Yc\0\0\0\0\0\0\0\0\30\0\0\0@\0\0\0s7\3\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=36602, ...}) = 0
read(5, "\0\0t\0\0\202\1\0d\1\0S(\2\0\0\0s\372\2\0\0 Decodes t"..., 28672) = 28672
read(5, "\0\0/usr/lib64/python2.7/codecs.py"..., 4096) = 3834
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.7/encodings/encodings", 0x7ffc6717dc00) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/encodings.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/encodingsmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/encodings.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/encodings.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/encodings/aliases", 0x7ffc6717dbf0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/aliases.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/aliasesmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/aliases.py", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=14848, ...}) = 0
open("/usr/lib64/python2.7/encodings/aliases.pyc", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=8770, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(5, "\3\363\r\nF\302\203Yc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0su\10\0\0d\0"..., 4096) = 4096
fstat(5, {st_mode=S_IFREG|0644, st_size=8770, ...}) = 0
read(5, "ibm860t\6\0\0\0ibm860t\5\0\0\0cp861t\3\0\0\0"..., 4096) = 4096
read(5, "\7\3\7\3\7\1\7\1\7\1\7\1\7\1\7\1\7\1\7\3\7\1\7\1\7\3\7\1\7\3\7\1"..., 4096) = 578
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(4)                                = 0
stat("/usr/lib64/python2.7/encodings/__builtin__", 0x7ffc6717dc00) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/__builtin__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/__builtin__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/__builtin__.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/__builtin__.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
close(3)                                = 0
stat("/usr/lib64/python2.7/encodings/utf_8", 0x7ffc6717deb0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/utf_8.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/utf_8module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/encodings/utf_8.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
open("/usr/lib64/python2.7/encodings/utf_8.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1966, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(4, "\3\363\r\nG\302\203Yc\0\0\0\0\0\0\0\0\3\0\0\0@\0\0\0s\230\0\0\0d\0"..., 4096) = 1966
fstat(4, {st_mode=S_IFREG|0644, st_size=1966, ...}) = 0
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(3)                                = 0
ioctl(0, TCGETS, {B9600 opost isig icanon echo ...}) = 0
ioctl(1, TCGETS, {B9600 opost isig icanon echo ...}) = 0
ioctl(2, TCGETS, {B9600 opost isig icanon echo ...}) = 0
brk(NULL)                               = 0xc76000
brk(0xc97000)                           = 0xc97000
stat("clickhouse_driver", 0x7ffc6717df40) = -1 ENOENT (No such file or directory)
open("clickhouse_driver.so", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("clickhouse_drivermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("clickhouse_driver.py", O_RDONLY)  = -1 ENOENT (No such file or directory)
open("clickhouse_driver.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/clickhouse_driver", 0x7ffc6717df40) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/clickhouse_driver.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/clickhouse_drivermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/clickhouse_driver.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/clickhouse_driver.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/plat-linux2/clickhouse_driver", 0x7ffc6717df40) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/clickhouse_driver.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/clickhouse_drivermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/clickhouse_driver.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/clickhouse_driver.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/lib-dynload/clickhouse_driver", 0x7ffc6717df40) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/clickhouse_driver.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/clickhouse_drivermodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/clickhouse_driver.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/clickhouse_driver.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/usr/lib64/python2.7/site-packages/clickhouse_driver", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.7/site-packages/clickhouse_driver/__init__.py", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
stat("/usr/lib64/python2.7/site-packages/clickhouse_driver/__init__", 0x7ffc6717def0) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/clickhouse_driver/__init__.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/clickhouse_driver/__init__module.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/clickhouse_driver/__init__.py", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
open("/usr/lib64/python2.7/site-packages/clickhouse_driver/__init__.pyc", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=151, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2c550bc000
read(4, "\3\363\r\n\316\275$Yc\0\0\0\0\0\0\0\0\1\0\0\0@\0\0\0s\4\0\0\0d\0"..., 4096) = 151
fstat(4, {st_mode=S_IFREG|0644, st_size=151, ...}) = 0
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x7f2c550bc000, 4096)            = 0
close(3)                                = 0
stat("/usr/lib64/python2.7/site-packages/clickhouse_driver", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.7/site-packages/clickhouse_driver", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
stat("/usr/lib64/python2.7/site-packages/clickhouse_driver/client", 0x7ffc6717df40) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/clickhouse_driver/client.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/clickhouse_driver/clientmodule.so", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/clickhouse_driver/client.py", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/clickhouse_driver/client.pyc", O_RDONLY) = -1 ENOENT (No such file or directory)
write(2, "Traceback (most recent call last"..., 35Traceback (most recent call last):
) = 35
write(2, "  File \"<string>\", line 1, in <m"..., 39  File "<string>", line 1, in <module>
) = 39
open("<string>", O_RDONLY)              = -1 ENOENT (No such file or directory)
open("<string>", O_RDONLY)              = -1 ENOENT (No such file or directory)
open("/usr/lib64/python27.zip/<string>", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/<string>", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/plat-linux2/<string>", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-tk/<string>", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-old/<string>", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/lib-dynload/<string>", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib64/python2.7/site-packages/<string>", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/python2.7/site-packages/<string>", O_RDONLY) = -1 ENOENT (No such file or directory)
write(2, "ImportError", 11ImportError)             = 11
write(2, ": ", 2: )                       = 2
write(2, "No module named client", 22No module named client)  = 22
write(2, "\n", 1
)                       = 1
rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x7f2c548c45e0}, {0x7f2c54be7540, [], SA_RESTORER, 0x7f2c548c45e0}, 8) = 0
brk(NULL)                               = 0xc97000
brk(NULL)                               = 0xc97000
brk(0xc89000)                           = 0xc89000
brk(NULL)                               = 0xc89000
exit_group(1)                           = ?
+++ exited with 1 +++

pip install debug output

pip install -Iv clickhouse-driver[lz4] --force-reinstall
Collecting clickhouse-driver[lz4]
  1 location(s) to search for versions of clickhouse-driver:
  * https://pypi.python.org/simple/clickhouse-driver/
  Getting page https://pypi.python.org/simple/clickhouse-driver/
  Looking up "https://pypi.python.org/simple/clickhouse-driver/" in the cache
  Current age based on date: 1570
  Freshness lifetime from max-age: 600
  Freshness lifetime from request max-age: 600
  The cached response is "stale" with no etag, purging
  Starting new HTTPS connection (1): pypi.python.org
  "GET /simple/clickhouse-driver/ HTTP/1.1" 200 520
  Updating cache with response from "https://pypi.python.org/simple/clickhouse-driver/"
  Caching b/c date exists and max-age > 0
  Analyzing links from page https://pypi.python.org/simple/clickhouse-driver/
    Found link https://pypi.python.org/packages/14/e5/c88412568986d1bdc2f7f7804a6e51f99f606d04c6a16244e55450acced9/clickhouse-driver-0.0.5.tar.gz#md5=7bff5b9fead97e832e0fc1b3c8545cdf (from https://pypi.python.org/simple/clickhouse-driver/), version: 0.0.5
    Found link https://pypi.python.org/packages/39/aa/271426b7719b0d0ec9b9fdaa241ae179bf0a8fb10b81e75a49908f7dff94/clickhouse-driver-0.0.4.tar.gz#md5=de1f35782c27f39617a0788d03a3e4fb (from https://pypi.python.org/simple/clickhouse-driver/), version: 0.0.4
    Found link https://pypi.python.org/packages/83/cb/85b6ad6898a50e52a526c938e379d5dfeb8a4433234483ab7378e8bf9072/clickhouse-driver-0.0.3.tar.gz#md5=61cd8724403b991454931e85ec0958eb (from https://pypi.python.org/simple/clickhouse-driver/), version: 0.0.3
    Found link https://pypi.python.org/packages/a9/7c/e357eba9e189adb7f732c105e7f5ad447b8d9a35f30691798265d98bc22c/clickhouse-driver-0.0.2.tar.gz#md5=329d93df2e5541f8a881c23cd422c4ce (from https://pypi.python.org/simple/clickhouse-driver/), version: 0.0.2
    Found link https://pypi.python.org/packages/c4/6c/0ecda67c0f1c8730d420ffe1fad545b489217ccbb85b3a46ac3d0c8131b9/clickhouse-driver-0.0.6.tar.gz#md5=35b490d919664974f7144cbcc27c0c8e (from https://pypi.python.org/simple/clickhouse-driver/), version: 0.0.6
  Using version 0.0.6 (newest of versions: 0.0.2, 0.0.3, 0.0.4, 0.0.5, 0.0.6)
  Looking up "https://pypi.python.org/packages/c4/6c/0ecda67c0f1c8730d420ffe1fad545b489217ccbb85b3a46ac3d0c8131b9/clickhouse-driver-0.0.6.tar.gz" in the cache
  Current age based on date: 1296
  Freshness lifetime from max-age: 31557600
  The response is "fresh", returning cached response
  31557600 > 1296
  Using cached clickhouse-driver-0.0.6.tar.gz
  Downloading from URL https://pypi.python.org/packages/c4/6c/0ecda67c0f1c8730d420ffe1fad545b489217ccbb85b3a46ac3d0c8131b9/clickhouse-driver-0.0.6.tar.gz#md5=35b490d919664974f7144cbcc27c0c8e (from https://pypi.python.org/simple/clickhouse-driver/)
  Running setup.py (path:/tmp/pip-build-Hsuli_/clickhouse-driver/setup.py) egg_info for package clickhouse-driver
    Running command python setup.py egg_info
    running egg_info
    creating pip-egg-info/clickhouse_driver.egg-info
    writing requirements to pip-egg-info/clickhouse_driver.egg-info/requires.txt
    writing pip-egg-info/clickhouse_driver.egg-info/PKG-INFO
    writing top-level names to pip-egg-info/clickhouse_driver.egg-info/top_level.txt
    writing dependency_links to pip-egg-info/clickhouse_driver.egg-info/dependency_links.txt
    writing manifest file 'pip-egg-info/clickhouse_driver.egg-info/SOURCES.txt'
    reading manifest file 'pip-egg-info/clickhouse_driver.egg-info/SOURCES.txt'
    writing manifest file 'pip-egg-info/clickhouse_driver.egg-info/SOURCES.txt'
  Source in ./pip-build-Hsuli_/clickhouse-driver has version 0.0.6, which satisfies requirement clickhouse-driver[lz4] from https://pypi.python.org/packages/c4/6c/0ecda67c0f1c8730d420ffe1fad545b489217ccbb85b3a46ac3d0c8131b9/clickhouse-driver-0.0.6.tar.gz#md5=35b490d919664974f7144cbcc27c0c8e
  Installing extra requirements: 'lz4'
Collecting six (from clickhouse-driver[lz4])
  1 location(s) to search for versions of six:
  * https://pypi.python.org/simple/six/
  Getting page https://pypi.python.org/simple/six/
  Looking up "https://pypi.python.org/simple/six/" in the cache
  Current age based on date: 1571
  Freshness lifetime from max-age: 600
  Freshness lifetime from request max-age: 600
  The cached response is "stale" with no etag, purging
  "GET /simple/six/ HTTP/1.1" 200 2699
  Updating cache with response from "https://pypi.python.org/simple/six/"
  Caching b/c date exists and max-age > 0
  Analyzing links from page https://pypi.python.org/simple/six/
    Found link https://pypi.python.org/packages/02/c3/8e2a38edaac777ee2bbe479b3a65b020ade549efd6a224c2f4e95c818799/six-1.6.0.tar.gz#md5=eb22a24e8be9497dd71930bf2321b6ec (from https://pypi.python.org/simple/six/), version: 1.6.0
    Found link https://pypi.python.org/packages/02/f8/d16f06e49b0d2ef40548bf42826f926c8964ad3b1d00f8098dcc6ef15aea/six-1.3.0.tar.gz#md5=ec47fe6070a8a64c802363d2c2b1e2ee (from https://pypi.python.org/simple/six/), version: 1.3.0
    Found link https://pypi.python.org/packages/0b/5e/4b3f417a85d9cd30b172a1512a2d3cdd0ffb05a5deacb8adf2ef30db100d/six-1.5.1.tar.gz#md5=bb00c982fc0ec0dd6a760500b0941fa9 (from https://pypi.python.org/simple/six/), version: 1.5.1
    Found link https://pypi.python.org/packages/0e/f9/66471f9b7e9291cca697b2e61a10645a537f389a9d5c0679d50dd86b20f7/six-0.9.0.tar.gz#md5=5ce2947347101b9f54674c19ef88233d (from https://pypi.python.org/simple/six/), version: 0.9.0
    Found link https://pypi.python.org/packages/0f/dd/379fa572b72da0b482545116139529af8da92e686ea136271beecddd4e81/six-1.5.0.tar.gz#md5=72b33ff89f3b2f21dd2cb28fb94f7031 (from https://pypi.python.org/simple/six/), version: 1.5.0
    Found link https://pypi.python.org/packages/10/e3/a7f8eea80a9fa8358c1cd89ef489bc03675e69e54ed2982cd6f2a28d8295/six-1.9.0-py2.py3-none-any.whl#md5=9ac7e129a80f72d6fc1f0216f6e9627b (from https://pypi.python.org/simple/six/), version: 1.9.0
    Found link https://pypi.python.org/packages/11/3f/2b3c217c5427cdd12619024b1ee1b04d49e27fde5c29df2a0b92c26677c2/six-1.8.0.tar.gz#md5=1626eb24cc889110c38f7e786ec69885 (from https://pypi.python.org/simple/six/), version: 1.8.0
    Found link https://pypi.python.org/packages/16/64/1dc5e5976b17466fd7d712e59cbe9fb1e18bec153109e5ba3ed6c9102f1a/six-1.9.0.tar.gz#md5=476881ef4012262dfc8adc645ee786c4 (from https://pypi.python.org/simple/six/), version: 1.9.0
    Found link https://pypi.python.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz#md5=d12789f9baf7e9fb2524c0c64f1773f8 (from https://pypi.python.org/simple/six/), version: 1.11.0
    Found link https://pypi.python.org/packages/1b/2a/ad686ae156581a70a7be28e7762f7d956bec30d62dafe9295b78dc019692/six-1.7.1.tar.gz#md5=f9fbad970c6e855cabde7ec1144b9058 (from https://pypi.python.org/simple/six/), version: 1.7.1
    Found link https://pypi.python.org/packages/1d/8e/220ce5a36dac3aabccee871a34561ceba82ce14b53760143cf5e01bb4d2c/six-1.5.2.tar.gz#md5=322b86d0c50a7d165c05600154cecc0a (from https://pypi.python.org/simple/six/), version: 1.5.2
    Found link https://pypi.python.org/packages/20/0a/617bf23511160454995bf1cbe6789f22beeb8b49c1f3b1bbf4b5cd6a55ca/six-1.7.0-py2.py3-none-any.whl#md5=e5ca7e89cc79d755ea128fc7e2cb136e (from https://pypi.python.org/simple/six/), version: 1.7.0
    Found link https://pypi.python.org/packages/2b/4a/233721f6c6afeed5a2034f617f120fa646da935039f08e67ab8dc008a3e6/six-1.7.3.tar.gz#md5=784c6e5541c3c4952de9c0a966a0a80b (from https://pypi.python.org/simple/six/), version: 1.7.3
    Found link https://pypi.python.org/packages/2e/a4/6dcb84af409b7bc0c258a0d6bd7e14231724d9a46b750c048f09d74d870c/six-1.7.3-py2.py3-none-any.whl#md5=5f34fe522765d398b21decdce62ebd1d (from https://pypi.python.org/simple/six/), version: 1.7.3
    Found link https://pypi.python.org/packages/4e/02/f08545a99829a04e841b6443267f216629c723c23fb9cfd17c99c068e33a/six-0.9.1.tar.gz#md5=1b249e0011355722f569406135a8ac93 (from https://pypi.python.org/simple/six/), version: 0.9.1
    Found link https://pypi.python.org/packages/4e/aa/73683ca0c4237891e33562e3f55bcaab972869959b97b397637519d92035/six-1.4.1.tar.gz#md5=bdbb9e12d3336c198695aa4cf3a61d62 (from https://pypi.python.org/simple/six/), version: 1.4.1
    Found link https://pypi.python.org/packages/54/45/8b5eef1ba0b79acbdab01435359f37ae13dc6c4aafaa444b805e3867386d/six-1.6.0-py2.py3-none-any.whl#md5=e2755cf8a1d8e4eda44a8e3436c458ca (from https://pypi.python.org/simple/six/), version: 1.6.0
    Found link https://pypi.python.org/packages/54/d4/8f7d631f1c3defa2ff4bd7c3daddcc5ed6eb9df7631f3cf24cc376aa3231/six-1.1.0.tar.gz#md5=9e8099b57cd27493a6988e9c9b313e23 (from https://pypi.python.org/simple/six/), version: 1.1.0
    Found link https://pypi.python.org/packages/60/84/72c628d5a4efffb23e2fb46cdbf8ee669046d8208ba5dab08f989b7bfe9c/six-1.5.1-py2.py3-none-any.whl#md5=2064b715201fa76a55dea75675ee19f2 (from https://pypi.python.org/simple/six/), version: 1.5.1
    Found link https://pypi.python.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl#md5=866ab722be6bdfed6830f3179af65468 (from https://pypi.python.org/simple/six/), version: 1.11.0
    Found link https://pypi.python.org/packages/6b/30/839b8059d1225dbd3a0dd97c3c370bbb978cde505e160b30515fb7be17d8/six-1.7.2-py2.py3-none-any.whl#md5=0e10f8d8e65257408e4428632859dad9 (from https://pypi.python.org/simple/six/), version: 1.7.2
    Found link https://pypi.python.org/packages/7e/16/792311d76b8e23da84e1b177fb973679de1c963391d0dcd7e963634bed4b/six-1.7.0.tar.gz#md5=92f7210da3db1e988979fa394aa41d7a (from https://pypi.python.org/simple/six/), version: 1.7.0
    Found link https://pypi.python.org/packages/8b/08/8f569ab2c81c1443ce43e29df2e7eec1ab7f005455f6c193793728b00f04/six-1.0b1.tar.gz#md5=cbfcc64af1f27162a6a6b5510e262c9d (from https://pypi.python.org/simple/six/), version: 1.0b1
    Found link https://pypi.python.org/packages/99/25/2df8760d6902620cfca85e36f07de491d14f2c325ecc01c1a5590d8af22d/six-1.4.0.tar.gz#md5=5fcab6a067b5ebf68ede2f4d02fe7547 (from https://pypi.python.org/simple/six/), version: 1.4.0
    Found link https://pypi.python.org/packages/a2/4b/2b4532b4eba116a02fc0b5e0b3540a073a61c003b7b6293b7b884afa8ff1/six-1.8.0-py2.py3-none-any.whl#md5=2f5f96148c68f3c1611f489678a8b445 (from https://pypi.python.org/simple/six/), version: 1.8.0
    Found link https://pypi.python.org/packages/a4/ed/a1410f4a3ae1492d87cbc7acdeea819db3caf6e526ef7032dd6fe50d2083/six-1.7.2.tar.gz#md5=4c26276583b01dfc73474cb32327af91 (from https://pypi.python.org/simple/six/), version: 1.7.2
    Found link https://pypi.python.org/packages/a6/af/4506a069312018665b8936e5d51b3aa013971ef65eab5231ef151a482dcd/six-1.0.0.tar.gz#md5=37c7ff036fdff2b1bb8d55e49ccb3b44 (from https://pypi.python.org/simple/six/), version: 1.0.0
    Found link https://pypi.python.org/packages/aa/ec/e6954e19e617c1b9860325f0995d456d8416c84a6cb9bce1c10998280b59/six-1.7.1-py2.py3-none-any.whl#md5=c3c1e251733acc9db947e75c9a02cf06 (from https://pypi.python.org/simple/six/), version: 1.7.1
    Found link https://pypi.python.org/packages/af/33/fa2097ac4bc7a9672517fdcb982bc7454fdd113f49f7ab353025b906a119/six-0.9.2.tar.gz#md5=92ea7c870396dd9222029a188c6bbd7f (from https://pypi.python.org/simple/six/), version: 0.9.2
    Found link https://pypi.python.org/packages/b3/b2/238e2590826bfdd113244a40d9d3eb26918bd798fc187e2360a8367068db/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55 (from https://pypi.python.org/simple/six/), version: 1.10.0
    Found link https://pypi.python.org/packages/ba/19/aa48edcff9d0c396a4d009d362d0a0a1ac3db6f9d7d5736e0175b94d7ef8/six-1.6.1-py2.py3-none-any.whl#md5=ca195cc2271b03ae1c8750a88081c7f1 (from https://pypi.python.org/simple/six/), version: 1.6.1
    Found link https://pypi.python.org/packages/c7/a4/35520d20a8e4b3c28c9db705fffd4c7053e0236928951da32167e5078faa/six-1.5.2-py2.py3-none-any.whl#md5=ba32222ad0c5c7057a7c42e66e81289d (from https://pypi.python.org/simple/six/), version: 1.5.2
    Found link https://pypi.python.org/packages/c8/0a/b6723e1bc4c516cb687841499455a8505b44607ab535be01091c0f24f079/six-1.10.0-py2.py3-none-any.whl#md5=3ab558cf5d4f7a72611d59a81a315dc8 (from https://pypi.python.org/simple/six/), version: 1.10.0
    Found link https://pypi.python.org/packages/ca/15/e62a66024dded9640f8d39112330e6b108e7ab21a1b8618c2d1e2eea7e1d/six-1.5.0-py2.py3-none-any.whl#md5=3307efe2bc4ca8556befc9afe297c530 (from https://pypi.python.org/simple/six/), version: 1.5.0
    Found link https://pypi.python.org/packages/e8/70/b9c441d8c02b70eb3bf923c49944b8fc656f78a43c084d2a98534d7404e2/six-1.6.1.tar.gz#md5=07d606ac08595d795bf926cc9985674f (from https://pypi.python.org/simple/six/), version: 1.6.1
    Found link https://pypi.python.org/packages/e9/b4/0ccbc17cd49a812ab8363058bb12f0134cf2d3ba752391f309ddf567ae97/six-1.2.0.tar.gz#md5=2a5d1afc79912832ac78fd38e3d75d7e (from https://pypi.python.org/simple/six/), version: 1.2.0
  Using version 1.11.0 (newest of versions: 0.9.0, 0.9.1, 0.9.2, 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0, 1.4.1, 1.5.0, 1.5.1, 1.5.2, 1.6.0, 1.6.1, 1.7.0, 1.7.1, 1.7.2, 1.7.3, 1.8.0, 1.9.0, 1.10.0, 1.11.0)
  Looking up "https://pypi.python.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl" in the cache
  Current age based on date: 1571
  Freshness lifetime from max-age: 31557600
  The response is "fresh", returning cached response
  31557600 > 1571
  Using cached six-1.11.0-py2.py3-none-any.whl
  Downloading from URL https://pypi.python.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl#md5=866ab722be6bdfed6830f3179af65468 (from https://pypi.python.org/simple/six/)
Collecting enum34 (from clickhouse-driver[lz4])
  1 location(s) to search for versions of enum34:
  * https://pypi.python.org/simple/enum34/
  Getting page https://pypi.python.org/simple/enum34/
  Looking up "https://pypi.python.org/simple/enum34/" in the cache
  Current age based on date: 1571
  Freshness lifetime from max-age: 600
  Freshness lifetime from request max-age: 600
  The cached response is "stale" with no etag, purging
  "GET /simple/enum34/ HTTP/1.1" 200 3587
  Updating cache with response from "https://pypi.python.org/simple/enum34/"
  Caching b/c date exists and max-age > 0
  Analyzing links from page https://pypi.python.org/simple/enum34/
    Found link https://pypi.python.org/packages/03/81/a80cd26b7edbd089a7e8e2e2505cbc4310d6385c36469b3eb29e05a49d91/enum34-0.9.1.tar.gz#md5=6b73a56cd0a6cadec6ec74e62ebdadbc (from https://pypi.python.org/simple/enum34/), version: 0.9.1
    Found link https://pypi.python.org/packages/03/ef/643b63a6b93d77d2806744b983c67a45d7267c37dca34cc1a32695b95b99/enum34-1.1.3-py2.py3-none-any.whl#md5=8c06365a725a6a1ba9b77404e46cf556 (from https://pypi.python.org/simple/enum34/), version: 1.1.3
    Found link https://pypi.python.org/packages/0c/84/7d9edf8deae23564f7a547bfae13cdbe8b219f205af5985a681033a7626c/enum34-0.9.15.tar.gz#md5=792f6a21f504fb43d63d18ecfa10e706 (from https://pypi.python.org/simple/enum34/), version: 0.9.15
    Found link https://pypi.python.org/packages/18/1d/9c27a9452c811ddf820d955f0b42bb3971a05201bceed1934e2853add2bd/enum34-1.0.4.zip#md5=9843e97527f3126c851df7afeb0524b3 (from https://pypi.python.org/simple/enum34/), version: 1.0.4
    Found link https://pypi.python.org/packages/1a/b7/e52cc2e40e1012620d160aec22ae841062cf082b2f851e0003ead133b593/enum34-1.0.1.zip#md5=533b1bdb39199a4431438dcdb92c0298 (from https://pypi.python.org/simple/enum34/), version: 1.0.1
    Found link https://pypi.python.org/packages/2a/aa/713a32614841c98a563f6e519205089768910482896a2ac522a6890d1beb/enum34-1.1.1.tar.gz#md5=5edaf22a14ec2769fc973a0443bf02d5 (from https://pypi.python.org/simple/enum34/), version: 1.1.1
    Found link https://pypi.python.org/packages/2e/a8/1430b36bf50f447a6aeb196b326cf493a53850cbb28dc06a5497d8327284/enum34-1.1.1.zip#md5=51c7ad7ec459e7db38388d5fb3461f3d (from https://pypi.python.org/simple/enum34/), version: 1.1.1
    Found link https://pypi.python.org/packages/2f/63/6c3fa92c2f1c6c4fb09d3b2b04e38c036c17de4698d20a85192ef4a6cabb/enum34-1.0.tar.gz#md5=9d57f5454c70c11707998ea26c1b0a7c (from https://pypi.python.org/simple/enum34/), version: 1.0
    Found link https://pypi.python.org/packages/30/3c/7b6debc06c8f6bbfa20104fa31aeaae4a425e45c51f3522d87e35dcfc910/enum34-1.1.4-py2.py3-none-any.whl#md5=c41dcd04e1077e7bb533e4328d48939e (from https://pypi.python.org/simple/enum34/), version: 1.1.4
    Found link https://pypi.python.org/packages/35/25/9e755853a1ae29fe0f102b1d6b805104344df70e460f4b908f1c98e1fe67/enum34-1.1.0.zip#md5=c0b726bb89243a8c4393b0a02189f5da (from https://pypi.python.org/simple/enum34/), version: 1.1.0
    Found link https://pypi.python.org/packages/35/28/796e6802bcdef21d12da3d232cbd7788989f0323c297a21f45ed1096acdc/enum34-1.0.3.tar.gz#md5=e47a51cd3af14b57cea91bd2ac43a462 (from https://pypi.python.org/simple/enum34/), version: 1.0.3
    Found link https://pypi.python.org/packages/3c/7f/ea9951bf550a3171e1da976853552ed656cfdc8571a926d74bac9521cb74/enum34-0.9.18.tar.gz#md5=2e8204f0a432f68e90dd4e0f0b5c285b (from https://pypi.python.org/simple/enum34/), version: 0.9.18
    Found link https://pypi.python.org/packages/3f/3f/45e14086a33c3faee83dc11feb0a7ba0c2cb16ee1e39f616b40d91516c85/enum34-1.0.zip#md5=d952b8d7fe114a96b6e4a79993df4d9b (from https://pypi.python.org/simple/enum34/), version: 1.0
    Found link https://pypi.python.org/packages/43/ad/3ecb7efcb8bea6176e9245c1544a539b1a5471c3c69455dec09364ee7221/enum34-0.9.17.tar.gz#md5=d4280dfe042e1921c4d92961359d95e8 (from https://pypi.python.org/simple/enum34/), version: 0.9.17
    Found link https://pypi.python.org/packages/50/e3/ffe94e24b660ca0516af1b5c5396e8ff130403c669b948aee76c1710af96/enum34-0.9.14.tar.gz#md5=99c41e880dda94b8b434c8339c455ab6 (from https://pypi.python.org/simple/enum34/), version: 0.9.14
    Found link https://pypi.python.org/packages/55/43/1d35c15b379e45e253852edeb6a959a7b40682418941a46c0b55f0f3e8bd/enum34-0.9.tar.gz#md5=5b755cc3d0e2a3fbc0dd4f10c040ff68 (from https://pypi.python.org/simple/enum34/), version: 0.9
    Found link https://pypi.python.org/packages/5c/c7/4c4356a9c4dba9ed836ce6391fc174a8cc93a4b6b1c556a376f917b55933/enum34-0.9.12.tar.gz#md5=c3d8df950c2fc6195479204732817491 (from https://pypi.python.org/simple/enum34/), version: 0.9.12
    Found link https://pypi.python.org/packages/64/d9/07c823d1587bbf08feb7e501d0dcce146da0d98ea0dcd86237a864b4019e/enum34-1.0.1.tar.gz#md5=8e80d15cd9139d659c404a387bb9b869 (from https://pypi.python.org/simple/enum34/), version: 1.0.1
    Found link https://pypi.python.org/packages/66/18/bbdbe6a09b2dd4517913a8cd7aed246dc78ae11a9ed108b88e6695819ee4/enum34-1.1.5.tar.gz#md5=4c4ee33a974d5fa97e4f6e7bd56dddb7 (from https://pypi.python.org/simple/enum34/), version: 1.1.5
    Found link https://pypi.python.org/packages/66/b9/ea04f447a7815b4774544e8970a7983312e6920c18445020d3e97b871eb8/enum34-1.1.4.zip#md5=250b8cd9ff404fdbfbf645d7f491b26a (from https://pypi.python.org/simple/enum34/), version: 1.1.4
    Found link https://pypi.python.org/packages/6f/e9/08fd439384b7e3d613e75a6c8236b8e64d90c47d23413493b38d4229a9a5/enum34-1.1.2.tar.gz#md5=025bb71b3f9d2fad15d0ee53e48dc873 (from https://pypi.python.org/simple/enum34/), version: 1.1.2
    Found link https://pypi.python.org/packages/72/c9/3c640a9cd54a731f3c54d97515b06aae6f6d16a5878a632dbfa9ffe5e663/enum34-1.0.4.tar.gz#md5=ac80f432ac9373e7d162834b264034b6 (from https://pypi.python.org/simple/enum34/), version: 1.0.4
    Found link https://pypi.python.org/packages/7a/db/d480ed32f65000ca2f9d98e2896e73443e8b2f45d00d440c2b289e455bd0/enum34-0.9.13.tar.gz#md5=49da54058e2533477710c70ca9d0afbe (from https://pypi.python.org/simple/enum34/), version: 0.9.13
    Found link https://pypi.python.org/packages/80/c9/5474b4177b7872172cee13ca0323aa40cc4925a831677b28318341e5ef4d/enum34-0.9.11.tar.gz#md5=fc3f406959c5ac8c1aa303d3fbda64d3 (from https://pypi.python.org/simple/enum34/), version: 0.9.11
    Found link https://pypi.python.org/packages/88/93/f9113ac7007de1c9685e6a59ebcbf78b4f46a90f164b6d379030cf33732f/enum34-1.0.2.tar.gz#md5=387f294549501b4a88a48941b027e4c3 (from https://pypi.python.org/simple/enum34/), version: 1.0.2
    Found link https://pypi.python.org/packages/8c/f7/904b8b91fda072a569960491007dbe91088156e4632e160fdd7de850e0c6/enum34-0.9.23.tar.gz#md5=cac9d9f00440d03df1d3bf6516d6e878 (from https://pypi.python.org/simple/enum34/), version: 0.9.23
    Found link https://pypi.python.org/packages/a6/4b/d2614fef376fcc5d0de1e86d1758c75ef79eda345ecfa07e0d16676706c3/enum34-1.1.5-py2.py3-none-any.whl#md5=f99d5056e8fae92578a506fac6c5c720 (from https://pypi.python.org/simple/enum34/), version: 1.1.5
    Skipping link https://pypi.python.org/packages/af/42/cb9355df32c69b553e72a2e28daee25d1611d2c0d9c272aa1d34204205b2/enum34-1.1.6-py3-none-any.whl#md5=a63ecb4f0b1b85fb69be64bdea999b43 (from https://pypi.python.org/simple/enum34/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/af/e2/06facff2d0b3b4098d30bbaa9b1bcc6621c671bbdeee4f6e8e2ea812a4a2/enum34-0.9.21.zip#md5=304ab6d782b55a0bea5aa028e6f03263 (from https://pypi.python.org/simple/enum34/), version: 0.9.21
    Found link https://pypi.python.org/packages/b3/e0/d30be82fd2a7282ed4f0043ec0a75096ffada4e1f2add9cc61bb0b459b9d/enum34-0.9.16.tar.gz#md5=7ac21f3bff1bcf97575fae7cf47db710 (from https://pypi.python.org/simple/enum34/), version: 0.9.16
    Found link https://pypi.python.org/packages/b7/87/96d377b73f89cb7f5ac27ff76a1743b7af3ab8bff7552000cc5b8909e6f9/enum34-0.9.20.zip#md5=5b71e3df5e35b9e0761dd7f2fe1ec895 (from https://pypi.python.org/simple/enum34/), version: 0.9.20
    Found link https://pypi.python.org/packages/bf/3e/31d502c25302814a7c2f1d3959d2a3b3f78e509002ba91aea64993936876/enum34-1.1.6.tar.gz#md5=5f13a0841a61f7fc295c514490d120d0 (from https://pypi.python.org/simple/enum34/), version: 1.1.6
    Found link https://pypi.python.org/packages/bf/46/ff446687437ae6d4269c6b5fcddfb55fde2c54181e0bcf06d4c27df631f7/enum34-0.9.22.zip#md5=6b50d555de5637eba095b891028dadec (from https://pypi.python.org/simple/enum34/), version: 0.9.22
    Found link https://pypi.python.org/packages/c5/db/e56e6b4bbac7c4a06de1c50de6fe1ef3810018ae11732a50f15f62c7d050/enum34-1.1.6-py2-none-any.whl#md5=68f6982cc07dde78f4b500db829860bd (from https://pypi.python.org/simple/enum34/), version: 1.1.6
    Found link https://pypi.python.org/packages/cd/df/9743d5998ad2d853f3327c0811459ecab2b4c1ef38703eb606dfeb79a882/enum34-1.0.3.zip#md5=7fb23366bcec23ba87bdfa0ff4a2fd67 (from https://pypi.python.org/simple/enum34/), version: 1.0.3
    Found link https://pypi.python.org/packages/e2/2c/17f8aba7f80bf2d0acc1b5e0122a79ea6e79535f3b8ab8110d974175e941/enum34-1.1.2.zip#md5=a9ebbad4ce451c1298cf094de07cdf69 (from https://pypi.python.org/simple/enum34/), version: 1.1.2
    Found link https://pypi.python.org/packages/e3/95/ce4125ad70ecfbe3888fa26cd7ce8dc5bc7aa43dbc1b56afb688f6a2ebdf/enum34-0.9.zip#md5=4717b8c328083d816b3b987f24446ad8 (from https://pypi.python.org/simple/enum34/), version: 0.9
    Found link https://pypi.python.org/packages/e4/c7/eef81cef56dcfd40d52b6ae5447d9b26cb963861154e9cc07efe470f1c16/enum34-0.9.23.zip#md5=6415120b5e77e2e265fb811ec45d85ec (from https://pypi.python.org/simple/enum34/), version: 0.9.23
    Found link https://pypi.python.org/packages/e6/a9/8bd89dfa586b24475554dc80f5b69dae54a2588f10cab4407eb42202a51a/enum34-0.9.21.tar.gz#md5=fc69a925910ed15efa405d0ae11baa29 (from https://pypi.python.org/simple/enum34/), version: 0.9.21
    Found link https://pypi.python.org/packages/e8/26/a6101edcf724453845c850281b96b89a10dac6bd98edebc82634fccce6a5/enum34-1.1.6.zip#md5=61ad7871532d4ce2d77fac2579237a9e (from https://pypi.python.org/simple/enum34/), version: 1.1.6
    Found link https://pypi.python.org/packages/eb/c2/ea4077a72a167fb75f38bac63801910dfa2d5083e23ddaa0c4062848f78c/enum34-1.1.4.tar.gz#md5=4d54e15da1558b399a402756c729459a (from https://pypi.python.org/simple/enum34/), version: 1.1.4
    Found link https://pypi.python.org/packages/ec/30/c3b0a1bd6acf8dfa22d8d9634a46c13eea9b9ed19909d68263ea1094e24e/enum34-1.1.3.tar.gz#md5=f31c81947ff8e54ec0eb162633d134ce (from https://pypi.python.org/simple/enum34/), version: 1.1.3
    Found link https://pypi.python.org/packages/ee/e4/5644bb98bc1e2e189b4d0d16ef76e4748ae8bb238ff20921eb64d4e9f5af/enum34-1.1.3.zip#md5=62608e6b0c209a0bedd3ed00796c13f0 (from https://pypi.python.org/simple/enum34/), version: 1.1.3
    Found link https://pypi.python.org/packages/f0/0b/8a8665427c6ad17083958eb8df3987cde8206ad5c27c3ba17373316be34c/enum34-1.1.5.zip#md5=6c7c689da32248524f5967284139dd0b (from https://pypi.python.org/simple/enum34/), version: 1.1.5
    Found link https://pypi.python.org/packages/f0/82/5608c8bc528388a43b13b42a627fb1f07ebf49645c1064d680a9a1ce87e4/enum34-1.1.0.tar.gz#md5=804ce293e468ee4878be4435166353ee (from https://pypi.python.org/simple/enum34/), version: 1.1.0
    Found link https://pypi.python.org/packages/f3/3e/63a48338bd274ea06fd64b1c54a578a63c6ed81ca8052199560fdaced4b9/enum34-0.9.20.tar.gz#md5=b2ba91deeb2ca74eb47a90966914ead7 (from https://pypi.python.org/simple/enum34/), version: 0.9.20
    Found link https://pypi.python.org/packages/f5/1d/7913c47f6e3a5c3aaa727e2d5c4b26f6e0a4bdf44dc3a3f840f4e9bfb3bf/enum34-1.0.2.zip#md5=1af43de52f10404e5f93aacc58c53512 (from https://pypi.python.org/simple/enum34/), version: 1.0.2
    Found link https://pypi.python.org/packages/fd/eb/be9470809e1c56b92f37f9abf547bccde3360fec591d2a1bb1dd86daabca/enum34-0.9.22.tar.gz#md5=fcbea288974e0af1fb4f4b20c9bd1af7 (from https://pypi.python.org/simple/enum34/), version: 0.9.22
    Found link https://pypi.python.org/packages/fe/1e/1a261186fd2d14a443cb38a415660055e8a8805a88923d9512edbd5c7977/enum34-0.9.19.tar.gz#md5=efb6a497f51e480ed356e976d0369cb3 (from https://pypi.python.org/simple/enum34/), version: 0.9.19
  Using version 1.1.6 (newest of versions: 0.9, 0.9.1, 0.9.11, 0.9.12, 0.9.13, 0.9.14, 0.9.15, 0.9.16, 0.9.17, 0.9.18, 0.9.19, 0.9.20, 0.9.21, 0.9.22, 0.9.23, 1.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.1.0, 1.1.1, 1.1.2, 1.1.3, 1.1.4, 1.1.5, 1.1.6)
  Looking up "https://pypi.python.org/packages/c5/db/e56e6b4bbac7c4a06de1c50de6fe1ef3810018ae11732a50f15f62c7d050/enum34-1.1.6-py2-none-any.whl" in the cache
  Current age based on date: 1571
  Freshness lifetime from max-age: 31557600
  The response is "fresh", returning cached response
  31557600 > 1571
  Using cached enum34-1.1.6-py2-none-any.whl
  Downloading from URL https://pypi.python.org/packages/c5/db/e56e6b4bbac7c4a06de1c50de6fe1ef3810018ae11732a50f15f62c7d050/enum34-1.1.6-py2-none-any.whl#md5=68f6982cc07dde78f4b500db829860bd (from https://pypi.python.org/simple/enum34/)
Collecting lz4 (from clickhouse-driver[lz4])
  1 location(s) to search for versions of lz4:
  * https://pypi.python.org/simple/lz4/
  Getting page https://pypi.python.org/simple/lz4/
  Looking up "https://pypi.python.org/simple/lz4/" in the cache
  Current age based on date: 1571
  Freshness lifetime from max-age: 600
  Freshness lifetime from request max-age: 600
  The cached response is "stale" with no etag, purging
  "GET /simple/lz4/ HTTP/1.1" 200 1536
  Updating cache with response from "https://pypi.python.org/simple/lz4/"
  Caching b/c date exists and max-age > 0
  Analyzing links from page https://pypi.python.org/simple/lz4/
    Found link https://pypi.python.org/packages/19/9f/b3fb884c77473ccba60c1805f5ef8f69d46b82c3368fb12769128de9b362/lz4-0.1.tar.gz#md5=44528a514705e474cd57ed141e77410e (from https://pypi.python.org/simple/lz4/), version: 0.1
    Found link https://pypi.python.org/packages/1b/69/6c106a77a804f08938487a9bf45a9771209f487c9dadea8ea819c1555e35/lz4-0.10.0.tar.gz#md5=46f2b225747703aa8b12e003604bdcef (from https://pypi.python.org/simple/lz4/), version: 0.10.0
    Found link https://pypi.python.org/packages/22/59/8909a1181198ceedf073b156efdf99c484910d00096b7b2acc0546af2694/lz4-0.2.tar.gz#md5=0fad06d54547cdc4ef68d5c528bb8f84 (from https://pypi.python.org/simple/lz4/), version: 0.2
    Found link https://pypi.python.org/packages/25/ff/7a966291e14a5da2f83265ac5b96314faf66dce7395c6f54b94b0b8ac431/lz4-0.4.0.tar.gz#md5=2cfb34945b30230d51593d2f82fa73ee (from https://pypi.python.org/simple/lz4/), version: 0.4.0
    Found link https://pypi.python.org/packages/39/3b/652c0ccec9cfbeab09ff2766d463fe13ff190dee0f945b1ce38804d589e6/lz4-0.6.1.tar.gz#md5=f607af73d9b8c501d72f41cd74a3137e (from https://pypi.python.org/simple/lz4/), version: 0.6.1
    Found link https://pypi.python.org/packages/43/a9/2048b0543f24356bef4656a6a71bd86f3a16985e2352b0bc60e9cab33cec/lz4-0.7.0.tar.gz#md5=e32842a49d5254f6918567197a704492 (from https://pypi.python.org/simple/lz4/), version: 0.7.0
    Found link https://pypi.python.org/packages/47/19/eff906f3f37680a73ad9524eeee1a4f59f728b3a13a4bcd92251961d006b/lz4-0.9.2.tar.gz#md5=b11f78c4bfd2afb15b1094438735c689 (from https://pypi.python.org/simple/lz4/), version: 0.9.2
    Found link https://pypi.python.org/packages/47/84/f61915f91b52c591e499a783e6d64c27cc62a4d535a722d78752dbe85678/lz4-0.9.4.tar.gz#md5=9d44f57a8926fd2494a0d23b1c4509f5 (from https://pypi.python.org/simple/lz4/), version: 0.9.4
    Found link https://pypi.python.org/packages/63/30/e05274f250106a7a3c0a84ff261c18b78d4d9ece655af05660959d3e5b14/lz4-0.9.1.tar.gz#md5=5455f33963794c8d65f64e9d347c7aa7 (from https://pypi.python.org/simple/lz4/), version: 0.9.1
    Found link https://pypi.python.org/packages/63/a5/6fe9d19f5ecd3918c48408f6e14e0cbb87a171dc33ed64cfb93e93229ef5/lz4-0.8.1.tar.gz#md5=44aa59da191cde5f72bc011d7a1a2cbe (from https://pypi.python.org/simple/lz4/), version: 0.8.1
    Found link https://pypi.python.org/packages/82/4f/4fa3b99ec1edc85e386c0cd3412f5128b31a23049269184d6d0a9c38d702/lz4-0.3.1.tar.gz#md5=56313c37285df13948598f013e9be808 (from https://pypi.python.org/simple/lz4/), version: 0.3.1
    Found link https://pypi.python.org/packages/8f/78/69be7ab4f43dea8a4ab3caa7c3194c29e2ea2e59f71c6e083b67e29cac91/lz4-0.6.0.tar.gz#md5=ac3ae204f523c1079f7135c0ae9e4856 (from https://pypi.python.org/simple/lz4/), version: 0.6.0
    Found link https://pypi.python.org/packages/91/db/65abcd7752d70a3d01ae735989cfa7b297230e5dd10e759daf89fe5ed3a9/lz4-0.2.1.tar.gz#md5=3e7db5f2aafd3348e8408bc7f3cb0355 (from https://pypi.python.org/simple/lz4/), version: 0.2.1
    Found link https://pypi.python.org/packages/ac/d8/cabdfb76723337d916a81919e54f9c48f47cb913f169523cc706f35a1fb5/lz4-0.3.0.tar.gz#md5=32365ca34f897bb3e3e231f6650e127d (from https://pypi.python.org/simple/lz4/), version: 0.3.0
    Found link https://pypi.python.org/packages/b5/f0/e1de2bb7feb54011f3c4dcf35b7cca3536e19526764db051b50ea26b58e7/lz4-0.8.2.tar.gz#md5=50dc6c2cb99c43ce6ed95cf6ae965f0e (from https://pypi.python.org/simple/lz4/), version: 0.8.2
    Found link https://pypi.python.org/packages/da/9c/a00d5a3f47c5339471938ed826a536ed0a3313a512ef8ec329c6477adc6f/lz4-0.9.0.tar.gz#md5=6e471cf32af1592ec0e439ad1c8bea16 (from https://pypi.python.org/simple/lz4/), version: 0.9.0
    Found link https://pypi.python.org/packages/ec/c8/ee91cae2257d255afe45e44b378c60b166f78b2d44f526ad6878cf6442fc/lz4-0.3.2.tar.gz#md5=dd0ffa9d745937b371c5ca87c7f973f8 (from https://pypi.python.org/simple/lz4/), version: 0.3.2
    Found link https://pypi.python.org/packages/f2/d0/18f4626f277dd050d2097ac345cf0bc23aff962f614d2d577671fe9ed23f/lz4-0.9.3.tar.gz#md5=165a397b41539a6f8d5a214f6e452939 (from https://pypi.python.org/simple/lz4/), version: 0.9.3
    Found link https://pypi.python.org/packages/f5/c6/ef2890b5e287735576e15c1389aa0b9032c9d78ed72385fbd1149af593cd/lz4-0.10.1.tar.gz#md5=1b8de6217e0785e92f457056c053e058 (from https://pypi.python.org/simple/lz4/), version: 0.10.1
    Found link https://pypi.python.org/packages/ff/35/d2edc9c6904001f496c54c3b94edf1a33ac27ab66bf0cab37a4e39cd01e0/lz4-0.5.0.tar.gz#md5=f0b02f3fa706943c982e341f0b794169 (from https://pypi.python.org/simple/lz4/), version: 0.5.0
  Using version 0.10.1 (newest of versions: 0.1, 0.2, 0.2.1, 0.3.0, 0.3.1, 0.3.2, 0.4.0, 0.5.0, 0.6.0, 0.6.1, 0.7.0, 0.8.1, 0.8.2, 0.9.0, 0.9.1, 0.9.2, 0.9.3, 0.9.4, 0.10.0, 0.10.1)
  Looking up "https://pypi.python.org/packages/f5/c6/ef2890b5e287735576e15c1389aa0b9032c9d78ed72385fbd1149af593cd/lz4-0.10.1.tar.gz" in the cache
  Current age based on date: 1571
  Freshness lifetime from max-age: 31557600
  The response is "fresh", returning cached response
  31557600 > 1571
  Using cached lz4-0.10.1.tar.gz
  Downloading from URL https://pypi.python.org/packages/f5/c6/ef2890b5e287735576e15c1389aa0b9032c9d78ed72385fbd1149af593cd/lz4-0.10.1.tar.gz#md5=1b8de6217e0785e92f457056c053e058 (from https://pypi.python.org/simple/lz4/)
  Running setup.py (path:/tmp/pip-build-Hsuli_/lz4/setup.py) egg_info for package lz4
    Running command python setup.py egg_info
    running egg_info
    creating pip-egg-info/lz4.egg-info
    writing pip-egg-info/lz4.egg-info/PKG-INFO
    writing top-level names to pip-egg-info/lz4.egg-info/top_level.txt
    writing dependency_links to pip-egg-info/lz4.egg-info/dependency_links.txt
    writing manifest file 'pip-egg-info/lz4.egg-info/SOURCES.txt'
    reading manifest file 'pip-egg-info/lz4.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    warning: no files found matching 'src/*.h'
    warning: no previously-included files found matching 'tests/*.pyc'
    writing manifest file 'pip-egg-info/lz4.egg-info/SOURCES.txt'
  Source in ./pip-build-Hsuli_/lz4 has version 0.10.1, which satisfies requirement lz4 from https://pypi.python.org/packages/f5/c6/ef2890b5e287735576e15c1389aa0b9032c9d78ed72385fbd1149af593cd/lz4-0.10.1.tar.gz#md5=1b8de6217e0785e92f457056c053e058 (from clickhouse-driver[lz4])
Collecting clickhouse-cityhash==1.0.2 (from clickhouse-driver[lz4])
  1 location(s) to search for versions of clickhouse-cityhash:
  * https://pypi.python.org/simple/clickhouse-cityhash/
  Getting page https://pypi.python.org/simple/clickhouse-cityhash/
  Looking up "https://pypi.python.org/simple/clickhouse-cityhash/" in the cache
  Current age based on date: 1571
  Freshness lifetime from max-age: 600
  Freshness lifetime from request max-age: 600
  The cached response is "stale" with no etag, purging
  "GET /simple/clickhouse-cityhash/ HTTP/1.1" 200 242
  Updating cache with response from "https://pypi.python.org/simple/clickhouse-cityhash/"
  Caching b/c date exists and max-age > 0
  Analyzing links from page https://pypi.python.org/simple/clickhouse-cityhash/
    Found link https://pypi.python.org/packages/fb/e3/282f812aeace32817a6b2b894ccdfbe31146364294668cc85e1ad87b6f3f/clickhouse-cityhash-1.0.2.tar.gz#md5=13982de613981509c68377d328238304 (from https://pypi.python.org/simple/clickhouse-cityhash/), version: 1.0.2
  Using version 1.0.2 (newest of versions: 1.0.2)
  Looking up "https://pypi.python.org/packages/fb/e3/282f812aeace32817a6b2b894ccdfbe31146364294668cc85e1ad87b6f3f/clickhouse-cityhash-1.0.2.tar.gz" in the cache
  Current age based on date: 1571
  Freshness lifetime from max-age: 31557600
  The response is "fresh", returning cached response
  31557600 > 1571
  Using cached clickhouse-cityhash-1.0.2.tar.gz
  Downloading from URL https://pypi.python.org/packages/fb/e3/282f812aeace32817a6b2b894ccdfbe31146364294668cc85e1ad87b6f3f/clickhouse-cityhash-1.0.2.tar.gz#md5=13982de613981509c68377d328238304 (from https://pypi.python.org/simple/clickhouse-cityhash/)
  Running setup.py (path:/tmp/pip-build-Hsuli_/clickhouse-cityhash/setup.py) egg_info for package clickhouse-cityhash
    Running command python setup.py egg_info
    running egg_info
    creating pip-egg-info/clickhouse_cityhash.egg-info
    writing pip-egg-info/clickhouse_cityhash.egg-info/PKG-INFO
    writing top-level names to pip-egg-info/clickhouse_cityhash.egg-info/top_level.txt
    writing dependency_links to pip-egg-info/clickhouse_cityhash.egg-info/dependency_links.txt
    writing manifest file 'pip-egg-info/clickhouse_cityhash.egg-info/SOURCES.txt'
    reading manifest file 'pip-egg-info/clickhouse_cityhash.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    writing manifest file 'pip-egg-info/clickhouse_cityhash.egg-info/SOURCES.txt'
  Source in ./pip-build-Hsuli_/clickhouse-cityhash has version 1.0.2, which satisfies requirement clickhouse-cityhash==1.0.2 from https://pypi.python.org/packages/fb/e3/282f812aeace32817a6b2b894ccdfbe31146364294668cc85e1ad87b6f3f/clickhouse-cityhash-1.0.2.tar.gz#md5=13982de613981509c68377d328238304 (from clickhouse-driver[lz4])
Installing collected packages: six, enum34, lz4, clickhouse-cityhash, clickhouse-driver


  Running setup.py install for lz4 ...     Running command /usr/bin/python2 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-Hsuli_/lz4/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-4GJxp_-record/install-record.txt --single-version-externally-managed --compile
    running install
    running build
    running build_py
    creating build
    creating build/lib.linux-x86_64-2.7
    creating build/lib.linux-x86_64-2.7/lz4
    copying lz4/lz4version.py -> build/lib.linux-x86_64-2.7/lz4
    copying lz4/deprecated.py -> build/lib.linux-x86_64-2.7/lz4
    copying lz4/__init__.py -> build/lib.linux-x86_64-2.7/lz4
    copying lz4/version.py -> build/lib.linux-x86_64-2.7/lz4
    creating build/lib.linux-x86_64-2.7/lz4/frame
    copying lz4/frame/__init__.py -> build/lib.linux-x86_64-2.7/lz4/frame
    creating build/lib.linux-x86_64-2.7/lz4/block
    copying lz4/block/__init__.py -> build/lib.linux-x86_64-2.7/lz4/block
    running build_ext
    building 'lz4._version' extension
    creating build/temp.linux-x86_64-2.7
    creating build/temp.linux-x86_64-2.7/lz4
    creating build/temp.linux-x86_64-2.7/lz4libs
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Ilz4libs -Ipy3c -I/usr/include/python2.7 -c lz4/_version.c -o build/temp.linux-x86_64-2.7/lz4/_version.o -O3 -Wall -Wundef
    In file included from py3c/py3c.h:31:0,
                     from lz4/_version.c:38:
    py3c/py3c/compat.h:76:18: warning: ‘PyStr_Concat’ defined but not used [-Wunused-function]
     static PyObject *PyStr_Concat(PyObject *left, PyObject *right) {
                      ^
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Ilz4libs -Ipy3c -I/usr/include/python2.7 -c lz4libs/lz4.c -o build/temp.linux-x86_64-2.7/lz4libs/lz4.o -O3 -Wall -Wundef
    gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-2.7/lz4/_version.o build/temp.linux-x86_64-2.7/lz4libs/lz4.o -L/usr/lib64 -lpython2.7 -o build/lib.linux-x86_64-2.7/lz4/_version.so
    building 'lz4.block._block' extension
    creating build/temp.linux-x86_64-2.7/lz4/block
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Ilz4libs -Ipy3c -I/usr/include/python2.7 -c lz4/block/_block.c -o build/temp.linux-x86_64-2.7/lz4/block/_block.o -O3 -Wall -Wundef
    In file included from py3c/py3c.h:31:0,
                     from lz4/block/_block.c:38:
    py3c/py3c/compat.h:76:18: warning: ‘PyStr_Concat’ defined but not used [-Wunused-function]
     static PyObject *PyStr_Concat(PyObject *left, PyObject *right) {
                      ^
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Ilz4libs -Ipy3c -I/usr/include/python2.7 -c lz4libs/lz4.c -o build/temp.linux-x86_64-2.7/lz4libs/lz4.o -O3 -Wall -Wundef
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Ilz4libs -Ipy3c -I/usr/include/python2.7 -c lz4libs/lz4hc.c -o build/temp.linux-x86_64-2.7/lz4libs/lz4hc.o -O3 -Wall -Wundef
    gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-2.7/lz4/block/_block.o build/temp.linux-x86_64-2.7/lz4libs/lz4.o build/temp.linux-x86_64-2.7/lz4libs/lz4hc.o -L/usr/lib64 -lpython2.7 -o build/lib.linux-x86_64-2.7/lz4/block/_block.so
    building 'lz4.frame._frame' extension
    creating build/temp.linux-x86_64-2.7/lz4/frame
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Ilz4libs -Ipy3c -I/usr/include/python2.7 -c lz4/frame/_frame.c -o build/temp.linux-x86_64-2.7/lz4/frame/_frame.o -O3 -Wall -Wundef
    In file included from py3c/py3c.h:31:0,
                     from lz4/frame/_frame.c:38:
    py3c/py3c/compat.h:76:18: warning: ‘PyStr_Concat’ defined but not used [-Wunused-function]
     static PyObject *PyStr_Concat(PyObject *left, PyObject *right) {
                      ^
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Ilz4libs -Ipy3c -I/usr/include/python2.7 -c lz4libs/lz4.c -o build/temp.linux-x86_64-2.7/lz4libs/lz4.o -O3 -Wall -Wundef
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Ilz4libs -Ipy3c -I/usr/include/python2.7 -c lz4libs/lz4hc.c -o build/temp.linux-x86_64-2.7/lz4libs/lz4hc.o -O3 -Wall -Wundef
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Ilz4libs -Ipy3c -I/usr/include/python2.7 -c lz4libs/lz4frame.c -o build/temp.linux-x86_64-2.7/lz4libs/lz4frame.o -O3 -Wall -Wundef
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Ilz4libs -Ipy3c -I/usr/include/python2.7 -c lz4libs/xxhash.c -o build/temp.linux-x86_64-2.7/lz4libs/xxhash.o -O3 -Wall -Wundef
    gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-2.7/lz4/frame/_frame.o build/temp.linux-x86_64-2.7/lz4libs/lz4.o build/temp.linux-x86_64-2.7/lz4libs/lz4hc.o build/temp.linux-x86_64-2.7/lz4libs/lz4frame.o build/temp.linux-x86_64-2.7/lz4libs/xxhash.o -L/usr/lib64 -lpython2.7 -o build/lib.linux-x86_64-2.7/lz4/frame/_frame.so
    copying build/lib.linux-x86_64-2.7/lz4/_version.so -> lz4
    copying build/lib.linux-x86_64-2.7/lz4/block/_block.so -> lz4/block
    copying build/lib.linux-x86_64-2.7/lz4/frame/_frame.so -> lz4/frame
    running install_lib
    copying build/lib.linux-x86_64-2.7/lz4/lz4version.py -> /usr/lib64/python2.7/site-packages/lz4
    copying build/lib.linux-x86_64-2.7/lz4/frame/_frame.so -> /usr/lib64/python2.7/site-packages/lz4/frame
    copying build/lib.linux-x86_64-2.7/lz4/version.py -> /usr/lib64/python2.7/site-packages/lz4
    copying build/lib.linux-x86_64-2.7/lz4/block/_block.so -> /usr/lib64/python2.7/site-packages/lz4/block
    copying build/lib.linux-x86_64-2.7/lz4/_version.so -> /usr/lib64/python2.7/site-packages/lz4
    byte-compiling /usr/lib64/python2.7/site-packages/lz4/lz4version.py to lz4version.pyc
    byte-compiling /usr/lib64/python2.7/site-packages/lz4/version.py to version.pyc
    running install_egg_info
    running egg_info
    writing lz4.egg-info/PKG-INFO
    writing top-level names to lz4.egg-info/top_level.txt
    writing dependency_links to lz4.egg-info/dependency_links.txt
    reading manifest file 'lz4.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    warning: no files found matching 'src/*.h'
    warning: no previously-included files found matching 'tests/*.pyc'
    writing manifest file 'lz4.egg-info/SOURCES.txt'
    removing '/usr/lib64/python2.7/site-packages/lz4-0.10.1-py2.7.egg-info' (and everything under it)
    Copying lz4.egg-info to /usr/lib64/python2.7/site-packages/lz4-0.10.1-py2.7.egg-info
    running install_scripts
    writing list of installed files to '/tmp/pip-4GJxp_-record/install-record.txt'
done
  Removing source in /tmp/pip-build-Hsuli_/lz4
  Running setup.py install for clickhouse-cityhash ...     Running command /usr/bin/python2 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-Hsuli_/clickhouse-cityhash/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-zctLQk-record/install-record.txt --single-version-externally-managed --compile
    running install
    running build
    running build_py
    creating build
    creating build/lib.linux-x86_64-2.7
    creating build/lib.linux-x86_64-2.7/clickhouse_driver
    copying clickhouse_driver/__init__.py -> build/lib.linux-x86_64-2.7/clickhouse_driver
    creating build/lib.linux-x86_64-2.7/clickhouse_driver/util
    copying clickhouse_driver/util/__init__.py -> build/lib.linux-x86_64-2.7/clickhouse_driver/util
    running build_ext
    building 'clickhouse_driver.util.cityhash' extension
    creating build/temp.linux-x86_64-2.7
    creating build/temp.linux-x86_64-2.7/src
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Iinclude -I/usr/include/python2.7 -c src/city.cc -o build/temp.linux-x86_64-2.7/src/city.o -O3 -msse4.2 -Wno-unused-value -Wno-unused-function
    gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -Iinclude -I/usr/include/python2.7 -c src/cityhash.cpp -o build/temp.linux-x86_64-2.7/src/cityhash.o -O3 -msse4.2 -Wno-unused-value -Wno-unused-function
    g++ -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-2.7/src/city.o build/temp.linux-x86_64-2.7/src/cityhash.o -L/usr/lib64 -lpython2.7 -o build/lib.linux-x86_64-2.7/clickhouse_driver/util/cityhash.so
    running install_lib
    copying build/lib.linux-x86_64-2.7/clickhouse_driver/util/cityhash.so -> /usr/lib64/python2.7/site-packages/clickhouse_driver/util
    running install_egg_info
    running egg_info
    writing clickhouse_cityhash.egg-info/PKG-INFO
    writing top-level names to clickhouse_cityhash.egg-info/top_level.txt
    writing dependency_links to clickhouse_cityhash.egg-info/dependency_links.txt
    reading manifest file 'clickhouse_cityhash.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    writing manifest file 'clickhouse_cityhash.egg-info/SOURCES.txt'
    removing '/usr/lib64/python2.7/site-packages/clickhouse_cityhash-1.0.2-py2.7.egg-info' (and everything under it)
    Copying clickhouse_cityhash.egg-info to /usr/lib64/python2.7/site-packages/clickhouse_cityhash-1.0.2-py2.7.egg-info
    running install_scripts
    writing list of installed files to '/tmp/pip-zctLQk-record/install-record.txt'
done
  Removing source in /tmp/pip-build-Hsuli_/clickhouse-cityhash
  Running setup.py install for clickhouse-driver ...     Running command /usr/bin/python2 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-Hsuli_/clickhouse-driver/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-ccK18v-record/install-record.txt --single-version-externally-managed --compile
    running install
    running build
    running build_py
    creating build
    creating build/lib
    creating build/lib/clickhouse_driver
    copying src/protocol.py -> build/lib/clickhouse_driver
    copying src/blockstreamprofileinfo.py -> build/lib/clickhouse_driver
    copying src/queryprocessingstage.py -> build/lib/clickhouse_driver
    copying src/__init__.py -> build/lib/clickhouse_driver
    copying src/errors.py -> build/lib/clickhouse_driver
    copying src/progress.py -> build/lib/clickhouse_driver
    copying src/readhelpers.py -> build/lib/clickhouse_driver
    copying src/reader.py -> build/lib/clickhouse_driver
    copying src/block.py -> build/lib/clickhouse_driver
    copying src/clientinfo.py -> build/lib/clickhouse_driver
    copying src/connection.py -> build/lib/clickhouse_driver
    copying src/defines.py -> build/lib/clickhouse_driver
    copying src/writer.py -> build/lib/clickhouse_driver
    copying src/client.py -> build/lib/clickhouse_driver
    creating build/lib/clickhouse_driver/streams
    copying src/streams/compressed.py -> build/lib/clickhouse_driver/streams
    copying src/streams/__init__.py -> build/lib/clickhouse_driver/streams
    copying src/streams/native.py -> build/lib/clickhouse_driver/streams
    creating build/lib/clickhouse_driver/util
    copying src/util/__init__.py -> build/lib/clickhouse_driver/util
    copying src/util/tzinfo.py -> build/lib/clickhouse_driver/util
    creating build/lib/clickhouse_driver/compression
    copying src/compression/zstd.py -> build/lib/clickhouse_driver/compression
    copying src/compression/__init__.py -> build/lib/clickhouse_driver/compression
    copying src/compression/lz4.py -> build/lib/clickhouse_driver/compression
    copying src/compression/quicklz.py -> build/lib/clickhouse_driver/compression
    copying src/compression/lz4hc.py -> build/lib/clickhouse_driver/compression
    copying src/compression/base.py -> build/lib/clickhouse_driver/compression
    creating build/lib/clickhouse_driver/settings
    copying src/settings/available.py -> build/lib/clickhouse_driver/settings
    copying src/settings/__init__.py -> build/lib/clickhouse_driver/settings
    copying src/settings/types.py -> build/lib/clickhouse_driver/settings
    copying src/settings/writer.py -> build/lib/clickhouse_driver/settings
    creating build/lib/clickhouse_driver/columns
    copying src/columns/__init__.py -> build/lib/clickhouse_driver/columns
    copying src/columns/intcolumn.py -> build/lib/clickhouse_driver/columns
    copying src/columns/exceptions.py -> build/lib/clickhouse_driver/columns
    copying src/columns/service.py -> build/lib/clickhouse_driver/columns
    copying src/columns/nullablecolumn.py -> build/lib/clickhouse_driver/columns
    copying src/columns/uuidcolumn.py -> build/lib/clickhouse_driver/columns
    copying src/columns/nullcolumn.py -> build/lib/clickhouse_driver/columns
    copying src/columns/datecolumn.py -> build/lib/clickhouse_driver/columns
    copying src/columns/base.py -> build/lib/clickhouse_driver/columns
    copying src/columns/arraycolumn.py -> build/lib/clickhouse_driver/columns
    copying src/columns/floatcolumn.py -> build/lib/clickhouse_driver/columns
    copying src/columns/enumcolumn.py -> build/lib/clickhouse_driver/columns
    copying src/columns/stringcolumn.py -> build/lib/clickhouse_driver/columns
    copying src/columns/datetimecolumn.py -> build/lib/clickhouse_driver/columns
    running install_lib
    running install_egg_info
    running egg_info
    writing requirements to clickhouse_driver.egg-info/requires.txt
    writing clickhouse_driver.egg-info/PKG-INFO
    writing top-level names to clickhouse_driver.egg-info/top_level.txt
    writing dependency_links to clickhouse_driver.egg-info/dependency_links.txt
    reading manifest file 'clickhouse_driver.egg-info/SOURCES.txt'
    writing manifest file 'clickhouse_driver.egg-info/SOURCES.txt'
    removing '/usr/lib/python2.7/site-packages/clickhouse_driver-0.0.6-py2.7.egg-info' (and everything under it)
    Copying clickhouse_driver.egg-info to /usr/lib/python2.7/site-packages/clickhouse_driver-0.0.6-py2.7.egg-info
    running install_scripts
    writing list of installed files to '/tmp/pip-ccK18v-record/install-record.txt'
done
  Removing source in /tmp/pip-build-Hsuli_/clickhouse-driver
Successfully installed clickhouse-cityhash-1.0.2 clickhouse-driver-0.0.6 enum34-1.1.6 lz4-0.10.1 six-1.11.0
Cleaning up...

@morokin
Copy link
Author

morokin commented Oct 1, 2017

As further investigation shows, the issue is in clickhouse-cityhash package, please take a look at explanation below:

Part of the pip install output

clickhouse-cityhash

  running install_lib
    copying build/lib.linux-x86_64-2.7/clickhouse_driver/util/cityhash.so -> /usr/lib64/python2.7/site-packages/clickhouse_driver/util

clickhouse-driver

 writing manifest file 'clickhouse_driver.egg-info/SOURCES.txt'
    removing '/usr/lib/python2.7/site-packages/clickhouse_driver-0.0.6-py2.7.egg-info' (and everything under it)
    Copying clickhouse_driver.egg-info to /usr/lib/python2.7/site-packages/clickhouse_driver-0.0.6-py2.7.egg-info
    running install_scripts

If clickhouse-driver has been installed with any type of compression support it install as a dependency clichouse-cityhash package.
Under CentOS clickhouse-cityhash package goes to /usr/lib64/python2.7/site-packages/clickhouse_driver and actual clichouse-driver goes to /usr/lib/python2.7/site-packages/clickhouse_driver.

In CentOS by default in PYTHONPATH variable: /usr/lib64/python2.7/site-packages goes first and then /usr/lib/python2.7/site-packages

Since both paths containing clickhouse_driver but in /usr/lib64/python2.7/site-packages/clickhouse_driver obviously no client.py - import fails.

Workaround:
move /usr/lib64/python2.7/site-packages/clickhouse_driver/util/cityhash.so to /usr/lib/python2.7/site-packages/clickhouse_driver/util/

remove /usr/lib64/python2.7/site-packages/clickhouse_driver

Possible solution:
Install clickhouse-cityhash package to clickhouse_cityhash/ directory instead of clickhouse_driver/
(Some changes in driver code/imports may be required)

@xzkostyan xzkostyan self-assigned this Oct 2, 2017
@xzkostyan
Copy link
Member

Fixed: 1f22e5e.

You can temporary install master branch from git right now:

pip install git+https://github.com/mymarilyn/clickhouse-driver@master#egg=clickhouse-driver[lz4]

0.0.7 version is coming soon.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants