Advertisement
luckydonald

Untitled

Aug 5th, 2021
827
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 33.39 KB | None | 0 0
  1. luckydonald$ docker run --rm -it python:3.9 bash
  2.  
  3.  
  4.  
  5.  
  6. root@af2362de0fde:/# git clone https://github.com/luckydonald/image_intensities_minimal_test
  7.  
  8.  
  9.  
  10. Cloning into 'image_intensities_minimal_test'...
  11. remote: Enumerating objects: 191, done.
  12. remote: Counting objects: 100% (191/191), done.
  13. remote: Compressing objects: 100% (157/157), done.
  14. remote: Total 191 (delta 33), reused 183 (delta 28), pack-reused 0
  15. Receiving objects: 100% (191/191), 753.54 KiB | 7.54 MiB/s, done.
  16. Resolving deltas: 100% (33/33), done.
  17.  
  18.  
  19.  
  20.  
  21. root@af2362de0fde:/# cd image_intensities_minimal_test/
  22.  
  23.  
  24.  
  25. root@af2362de0fde:/image_intensities_minimal_test# python setup.py install
  26.  
  27.  
  28.  
  29.  
  30. running install
  31. running bdist_egg
  32. running egg_info
  33. creating image_intensities_test.egg-info
  34. writing image_intensities_test.egg-info/PKG-INFO
  35. writing dependency_links to image_intensities_test.egg-info/dependency_links.txt
  36. writing requirements to image_intensities_test.egg-info/requires.txt
  37. writing top-level names to image_intensities_test.egg-info/top_level.txt
  38. writing manifest file 'image_intensities_test.egg-info/SOURCES.txt'
  39. reading manifest file 'image_intensities_test.egg-info/SOURCES.txt'
  40. reading manifest template 'MANIFEST.in'
  41. warning: no files found matching '*' under directory 'sources2'
  42. writing manifest file 'image_intensities_test.egg-info/SOURCES.txt'
  43. installing library code to build/bdist.linux-x86_64/egg
  44. running install_lib
  45. running build_py
  46. creating build
  47. creating build/lib.linux-x86_64-3.9
  48. creating build/lib.linux-x86_64-3.9/image_intensities
  49. copying image_intensities/__init__.py -> build/lib.linux-x86_64-3.9/image_intensities
  50. copying image_intensities/intensities.py -> build/lib.linux-x86_64-3.9/image_intensities
  51. copying image_intensities/pure_python.py -> build/lib.linux-x86_64-3.9/image_intensities
  52. copying image_intensities/classes.py -> build/lib.linux-x86_64-3.9/image_intensities
  53. creating build/lib.linux-x86_64-3.9/sources
  54. copying sources/__init__.py -> build/lib.linux-x86_64-3.9/sources
  55. running build_ext
  56. generating cffi module 'build/temp.linux-x86_64-3.9/image_intensities._intensities.c'
  57. creating build/temp.linux-x86_64-3.9
  58. building 'image_intensities._intensities' extension
  59. creating build/temp.linux-x86_64-3.9/build
  60. creating build/temp.linux-x86_64-3.9/build/temp.linux-x86_64-3.9
  61. creating build/temp.linux-x86_64-3.9/sources
  62. creating build/temp.linux-x86_64-3.9/sources/turbojpeg
  63. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c build/temp.linux-x86_64-3.9/image_intensities._intensities.c -o build/temp.linux-x86_64-3.9/build/temp.linux-x86_64-3.9/image_intensities._intensities.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  64. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/intensities.c -o build/temp.linux-x86_64-3.9/sources/intensities.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  65. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/jpeg.c -o build/temp.linux-x86_64-3.9/sources/jpeg.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  66. sources/jpeg.c: In function ‘read_jpeg_file’:
  67. sources/jpeg.c:41:57: warning: pointer targets in passing argument 4 of ‘tjDecompressHeader2’ differ in signedness [-Wpointer-sign]
  68.      if ((tjDecompressHeader2(decompressor, input, size, &data.width, &data.height, &jpegSubsamp)) < 0) {
  69.                                                          ^~~~~~~~~~~
  70. In file included from sources/jpeg.c:3:
  71. sources/turbojpeg/turbojpeg.h:1720:15: note: expected ‘int *’ but argument is of type ‘uint32_t *{aka ‘unsigned int *}
  72.  DLLEXPORT int tjDecompressHeader2(tjhandle handle, unsigned char *jpegBuf,
  73.                ^~~~~~~~~~~~~~~~~~~
  74. sources/jpeg.c:41:70: warning: pointer targets in passing argument 5 of ‘tjDecompressHeader2’ differ in signedness [-Wpointer-sign]
  75.      if ((tjDecompressHeader2(decompressor, input, size, &data.width, &data.height, &jpegSubsamp)) < 0) {
  76.                                                                       ^~~~~~~~~~~~
  77. In file included from sources/jpeg.c:3:
  78. sources/turbojpeg/turbojpeg.h:1720:15: note: expected ‘int *’ but argument is of type ‘uint32_t *{aka ‘unsigned int *}
  79.  DLLEXPORT int tjDecompressHeader2(tjhandle handle, unsigned char *jpegBuf,
  80.                ^~~~~~~~~~~~~~~~~~~
  81. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/png.c -o build/temp.linux-x86_64-3.9/sources/png.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  82. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jaricom.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jaricom.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  83. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcapimin.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcapimin.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  84. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcapistd.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcapistd.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  85. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcarith.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcarith.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  86. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jccoefct.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jccoefct.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  87. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jccolor.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jccolor.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  88. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcdctmgr.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcdctmgr.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  89. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jchuff.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jchuff.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  90. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcicc.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcicc.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  91. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcinit.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcinit.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  92. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcmainct.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcmainct.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  93. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcmarker.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcmarker.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  94. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcmaster.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcmaster.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  95. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcomapi.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcomapi.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  96. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcparam.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcparam.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  97. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcphuff.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcphuff.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  98. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcprepct.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcprepct.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  99. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jcsample.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcsample.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  100. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jctrans.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jctrans.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  101. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdapimin.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdapimin.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  102. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdapistd.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdapistd.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  103. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdarith.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdarith.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  104. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdatadst-tj.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdatadst-tj.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  105. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdatadst.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdatadst.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  106. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdatasrc-tj.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdatasrc-tj.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  107. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdatasrc.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdatasrc.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  108. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdcoefct.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdcoefct.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  109. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdcolor.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdcolor.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  110. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jddctmgr.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jddctmgr.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  111. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdhuff.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdhuff.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  112. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdicc.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdicc.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  113. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdinput.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdinput.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  114. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdmainct.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdmainct.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  115. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdmarker.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdmarker.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  116. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdmaster.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdmaster.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  117. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdmerge.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdmerge.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  118. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdphuff.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdphuff.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  119. sources/turbojpeg/jdphuff.c: In function ‘decode_mcu_DC_first’:
  120. sources/turbojpeg/jdphuff.c:214:60: warning: operand of ?: changes signedness from ‘int’ to ‘unsigned int’ due to unsignedness of other operand [-Wsign-compare]
  121.    ((x) < (1 << ((s) - 1)) ? (x) + (((NEG_1) << (s)) + 1) : (x))
  122.                                                             ^~~
  123. sources/turbojpeg/jdphuff.c:343:13: note: in expansion of macro ‘HUFF_EXTEND’
  124.          s = HUFF_EXTEND(r, s);
  125.              ^~~~~~~~~~~
  126. sources/turbojpeg/jdphuff.c: In function ‘decode_mcu_AC_first’:
  127. sources/turbojpeg/jdphuff.c:214:60: warning: operand of ?: changes signedness from ‘int’ to ‘unsigned int’ due to unsignedness of other operand [-Wsign-compare]
  128.    ((x) < (1 << ((s) - 1)) ? (x) + (((NEG_1) << (s)) + 1) : (x))
  129.                                                             ^~~
  130. sources/turbojpeg/jdphuff.c:420:15: note: in expansion of macro ‘HUFF_EXTEND’
  131.            s = HUFF_EXTEND(r, s);
  132.                ^~~~~~~~~~~
  133. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdpostct.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdpostct.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  134. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdsample.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdsample.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  135. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jdtrans.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdtrans.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  136. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jerror.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jerror.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  137. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jfdctflt.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jfdctflt.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  138. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jfdctfst.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jfdctfst.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  139. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jfdctint.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jfdctint.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  140. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jidctflt.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jidctflt.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  141. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jidctfst.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jidctfst.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  142. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jidctint.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jidctint.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  143. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jidctred.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jidctred.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  144. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jmemmgr.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jmemmgr.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  145. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jmemnobs.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jmemnobs.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  146. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jquant1.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jquant1.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  147. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jquant2.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jquant2.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  148. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jsimd_none.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jsimd_none.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  149. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/jutils.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/jutils.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  150. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/rdbmp.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/rdbmp.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  151. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/rdppm.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/rdppm.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  152. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/transupp.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/transupp.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  153. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/turbojpeg.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/turbojpeg.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  154. sources/turbojpeg/turbojpeg.c: In function ‘tjCompress2’:
  155. sources/turbojpeg/turbojpeg.c:669:32: warning: implicit declaration of function ‘putenv’; did you mean ‘getenv’? [-Wimplicit-function-declaration]
  156.    if (flags & TJFLAG_FORCEMMX) putenv("JSIMD_FORCEMMX=1");
  157.                                 ^~~~~~
  158.                                 getenv
  159. sources/turbojpeg/turbojpeg.c: In function ‘tjSaveImage’:
  160. sources/turbojpeg/turbojpeg.c:2116:15: warning: implicit declaration of function ‘strcasecmp’; did you mean ‘strncmp’? [-Wimplicit-function-declaration]
  161.    if (ptr && !strcasecmp(ptr, ".bmp")) {
  162.                ^~~~~~~~~~
  163.                strncmp
  164. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/wrbmp.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/wrbmp.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  165. gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -Isources/ -Isources/turbojpeg/ -I/usr/local/include/python3.9 -c sources/turbojpeg/wrppm.c -o build/temp.linux-x86_64-3.9/sources/turbojpeg/wrppm.o -std=c99 -fPIC -O3 -DPPM_SUPPORTED -DBMP_SUPPORTED
  166. warning: no library file corresponding to 'sources/jpeg' found (skipping)
  167. warning: no library file corresponding to 'sources/png' found (skipping)
  168. gcc -pthread -shared build/temp.linux-x86_64-3.9/build/temp.linux-x86_64-3.9/image_intensities._intensities.o build/temp.linux-x86_64-3.9/sources/intensities.o build/temp.linux-x86_64-3.9/sources/jpeg.o build/temp.linux-x86_64-3.9/sources/png.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jaricom.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcapimin.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcapistd.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcarith.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jccoefct.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jccolor.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcdctmgr.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jchuff.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcicc.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcinit.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcmainct.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcmarker.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcmaster.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcomapi.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcparam.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcphuff.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcprepct.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jcsample.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jctrans.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdapimin.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdapistd.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdarith.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdatadst-tj.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdatadst.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdatasrc-tj.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdatasrc.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdcoefct.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdcolor.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jddctmgr.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdhuff.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdicc.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdinput.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdmainct.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdmarker.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdmaster.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdmerge.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdphuff.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdpostct.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdsample.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jdtrans.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jerror.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jfdctflt.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jfdctfst.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jfdctint.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jidctflt.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jidctfst.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jidctint.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jidctred.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jmemmgr.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jmemnobs.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jquant1.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jquant2.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jsimd_none.o build/temp.linux-x86_64-3.9/sources/turbojpeg/jutils.o build/temp.linux-x86_64-3.9/sources/turbojpeg/rdbmp.o build/temp.linux-x86_64-3.9/sources/turbojpeg/rdppm.o build/temp.linux-x86_64-3.9/sources/turbojpeg/transupp.o build/temp.linux-x86_64-3.9/sources/turbojpeg/turbojpeg.o build/temp.linux-x86_64-3.9/sources/turbojpeg/wrbmp.o build/temp.linux-x86_64-3.9/sources/turbojpeg/wrppm.o -L/usr/local/lib -o build/lib.linux-x86_64-3.9/image_intensities/_intensities.abi3.so
  169. creating build/bdist.linux-x86_64
  170. creating build/bdist.linux-x86_64/egg
  171. creating build/bdist.linux-x86_64/egg/image_intensities
  172. copying build/lib.linux-x86_64-3.9/image_intensities/__init__.py -> build/bdist.linux-x86_64/egg/image_intensities
  173. copying build/lib.linux-x86_64-3.9/image_intensities/intensities.py -> build/bdist.linux-x86_64/egg/image_intensities
  174. copying build/lib.linux-x86_64-3.9/image_intensities/_intensities.abi3.so -> build/bdist.linux-x86_64/egg/image_intensities
  175. copying build/lib.linux-x86_64-3.9/image_intensities/pure_python.py -> build/bdist.linux-x86_64/egg/image_intensities
  176. copying build/lib.linux-x86_64-3.9/image_intensities/classes.py -> build/bdist.linux-x86_64/egg/image_intensities
  177. creating build/bdist.linux-x86_64/egg/sources
  178. copying build/lib.linux-x86_64-3.9/sources/__init__.py -> build/bdist.linux-x86_64/egg/sources
  179. byte-compiling build/bdist.linux-x86_64/egg/image_intensities/__init__.py to __init__.cpython-39.pyc
  180. byte-compiling build/bdist.linux-x86_64/egg/image_intensities/intensities.py to intensities.cpython-39.pyc
  181. byte-compiling build/bdist.linux-x86_64/egg/image_intensities/pure_python.py to pure_python.cpython-39.pyc
  182. byte-compiling build/bdist.linux-x86_64/egg/image_intensities/classes.py to classes.cpython-39.pyc
  183. byte-compiling build/bdist.linux-x86_64/egg/sources/__init__.py to __init__.cpython-39.pyc
  184. creating stub loader for image_intensities/_intensities.abi3.so
  185. byte-compiling build/bdist.linux-x86_64/egg/image_intensities/_intensities.py to _intensities.cpython-39.pyc
  186. creating build/bdist.linux-x86_64/egg/EGG-INFO
  187. copying image_intensities_test.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
  188. copying image_intensities_test.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
  189. copying image_intensities_test.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
  190. copying image_intensities_test.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
  191. copying image_intensities_test.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
  192. writing build/bdist.linux-x86_64/egg/EGG-INFO/native_libs.txt
  193. zip_safe flag not set; analyzing archive contents...
  194. image_intensities.__pycache__._intensities.cpython-39: module references __file__
  195. creating dist
  196. creating 'dist/image_intensities_test-0.0.10.dev3-py3.9-linux-x86_64.egg' and adding 'build/bdist.linux-x86_64/egg' to it
  197. removing 'build/bdist.linux-x86_64/egg' (and everything under it)
  198. Processing image_intensities_test-0.0.10.dev3-py3.9-linux-x86_64.egg
  199. creating /usr/local/lib/python3.9/site-packages/image_intensities_test-0.0.10.dev3-py3.9-linux-x86_64.egg
  200. Extracting image_intensities_test-0.0.10.dev3-py3.9-linux-x86_64.egg to /usr/local/lib/python3.9/site-packages
  201. Adding image-intensities-test 0.0.10.dev3 to easy-install.pth file
  202.  
  203. Installed /usr/local/lib/python3.9/site-packages/image_intensities_test-0.0.10.dev3-py3.9-linux-x86_64.egg
  204. Processing dependencies for image-intensities-test==0.0.10.dev3
  205. Searching for luckydonald-utils
  206. Reading https://pypi.org/simple/luckydonald-utils/
  207. Downloading https://files.pythonhosted.org/packages/36/31/e1f75be41cca1f9582551786deaa55c38d4cd07ab86264c6613038ef871d/luckydonald_utils-0.83-py3-none-any.whl#sha256=af9c33eed7f8459fbce8ba2e513918722c9e01d069cc695a7945a83850ee6268
  208. Best match: luckydonald-utils 0.83
  209. Processing luckydonald_utils-0.83-py3-none-any.whl
  210. Installing luckydonald_utils-0.83-py3-none-any.whl to /usr/local/lib/python3.9/site-packages
  211. Adding luckydonald-utils 0.83 to easy-install.pth file
  212.  
  213. Installed /usr/local/lib/python3.9/site-packages/luckydonald_utils-0.83-py3.9.egg
  214. Searching for DictObject
  215. Reading https://pypi.org/simple/DictObject/
  216. Downloading https://files.pythonhosted.org/packages/47/0b/18e256994d3fc00381059ab065a677d55f29d1eb6e76feba3b497983e7b3/DictObject-1.1.1.tar.gz#sha256=1920ae314d121c53d3c0a3fc2f9cbe124ef9b9ff4b0b165531cfea5b99becc8e
  217. Best match: DictObject 1.1.1
  218. Processing DictObject-1.1.1.tar.gz
  219. Writing /tmp/easy_install-alydchp3/DictObject-1.1.1/setup.cfg
  220. Running DictObject-1.1.1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-alydchp3/DictObject-1.1.1/egg-dist-tmp-v54l_r1q
  221. zip_safe flag not set; analyzing archive contents...
  222. Moving DictObject-1.1.1-py3.9.egg to /usr/local/lib/python3.9/site-packages
  223. Adding DictObject 1.1.1 to easy-install.pth file
  224.  
  225. Installed /usr/local/lib/python3.9/site-packages/DictObject-1.1.1-py3.9.egg
  226. Searching for cffi==1.14.6
  227. Best match: cffi 1.14.6
  228. Processing cffi-1.14.6-py3.9-linux-x86_64.egg
  229. Adding cffi 1.14.6 to easy-install.pth file
  230.  
  231. Using /image_intensities_minimal_test/.eggs/cffi-1.14.6-py3.9-linux-x86_64.egg
  232. Searching for setuptools==54.1.1
  233. Best match: setuptools 54.1.1
  234. Adding setuptools 54.1.1 to easy-install.pth file
  235.  
  236. Using /usr/local/lib/python3.9/site-packages
  237. Searching for pip==21.0.1
  238. Best match: pip 21.0.1
  239. Adding pip 21.0.1 to easy-install.pth file
  240. Installing pip script to /usr/local/bin
  241. Installing pip3 script to /usr/local/bin
  242. Installing pip3.9 script to /usr/local/bin
  243.  
  244. Using /usr/local/lib/python3.9/site-packages
  245. Searching for pycparser==2.20
  246. Best match: pycparser 2.20
  247. Processing pycparser-2.20-py3.9.egg
  248. Adding pycparser 2.20 to easy-install.pth file
  249.  
  250. Using /image_intensities_minimal_test/.eggs/pycparser-2.20-py3.9.egg
  251. Finished processing dependencies for image-intensities-test==0.0.10.dev3
  252.  
  253.  
  254.  
  255.  
  256.  
  257. root@af2362de0fde:/image_intensities_minimal_test# cd ..
  258.  
  259.  
  260.  
  261.  
  262. root@af2362de0fde:/# python
  263.  
  264.  
  265.  
  266. Python 3.9.2 (default, Mar 12 2021, 18:54:15)
  267. [GCC 8.3.0] on linux
  268. Type "help", "copyright", "credits" or "license" for more information.
  269.  
  270.  
  271.  
  272. >>> from image_intensities import png_intensities
  273.  
  274.  
  275. Traceback (most recent call last):
  276.   File "<stdin>", line 1, in <module>
  277.   File "/usr/local/lib/python3.9/site-packages/image_intensities_test-0.0.10.dev3-py3.9-linux-x86_64.egg/image_intensities/__init__.py", line 2, in <module>
  278.     import image_intensities.intensities as intensities
  279.   File "/usr/local/lib/python3.9/site-packages/image_intensities_test-0.0.10.dev3-py3.9-linux-x86_64.egg/image_intensities/intensities.py", line 14, in <module>
  280.     from ._intensities import ffi as __ffi, lib as __lib
  281. ImportError: /usr/local/lib/python3.9/site-packages/image_intensities_test-0.0.10.dev3-py3.9-linux-x86_64.egg/image_intensities/_intensities.abi3.so: undefined symbol: png_set_longjmp_fn
  282. >>>
  283.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement