Advertisement
Guest User

Untitled

a guest
Aug 19th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.14 KB | None | 0 0
  1. Sending build context to Docker daemon 3.584kB
  2. Step 1/6 : FROM alpine
  3. ---> 11cd0b38bc3c
  4. Step 2/6 : WORKDIR /usr/software
  5. ---> Using cache
  6. ---> a159cca28581
  7. Step 3/6 : RUN apk update && apk upgrade && apk add --no-cache bash git openssh python3-dev py3-setuptools build-base gcc gfortran build-base boost-dev
  8. ---> Using cache
  9. ---> b5b9ead3159c
  10. Step 4/6 : RUN git clone https://github.com/tudarmstadt-lt/sensegram.git
  11. ---> Using cache
  12. ---> e273af844449
  13. Step 5/6 : RUN python3 -m ensurepip && pip3 install --upgrade pip setuptools && if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi && if [[ ! -e /usr/bin/python ]]; then ln -sf /usr/bin/python3 /usr/bin/python; fi && pip3 install wheel && pip3 install --upgrade pip
  14. ---> Running in ca2d6b23874e
  15. Requirement already satisfied: setuptools in /usr/lib/python3.6/site-packages
  16. Requirement already satisfied: pip in /usr/lib/python3.6/site-packages
  17. Collecting pip
  18. Downloading https://files.pythonhosted.org/packages/5f/25/e52d3f31441505a5f3af41213346e5b6c221c9e086a166f3703d2ddaf940/pip-18.0-py2.py3-none-any.whl (1.3MB)
  19. Collecting setuptools
  20. Downloading https://files.pythonhosted.org/packages/18/97/57c2a06449457449086182d8239c2261e9e63db69dceb266bc9f8212f788/setuptools-40.1.0-py2.py3-none-any.whl (568kB)
  21. Installing collected packages: pip, setuptools
  22. Found existing installation: pip 9.0.1
  23. Uninstalling pip-9.0.1:
  24. Successfully uninstalled pip-9.0.1
  25. Found existing installation: setuptools 39.1.0.post20180508
  26. Uninstalling setuptools-39.1.0.post20180508:
  27. Successfully uninstalled setuptools-39.1.0.post20180508
  28. Successfully installed pip-18.0 setuptools-40.1.0
  29. Collecting wheel
  30. Downloading https://files.pythonhosted.org/packages/81/30/e935244ca6165187ae8be876b6316ae201b71485538ffac1d718843025a9/wheel-0.31.1-py2.py3-none-any.whl (41kB)
  31. Installing collected packages: wheel
  32. Successfully installed wheel-0.31.1
  33. Requirement already up-to-date: pip in /usr/lib/python3.6/site-packages (18.0)
  34. ---> 758c7ade0f9a
  35. Removing intermediate container ca2d6b23874e
  36. Step 6/6 : RUN pip3 install -r sensegram/requirements.txt
  37. ---> Running in 3f935374028d
  38. Collecting requests (from -r sensegram/requirements.txt (line 1))
  39. Downloading https://files.pythonhosted.org/packages/65/47/7e02164a2a3db50ed6d8a6ab1d6d60b69c4c3fdf57a284257925dfc12bda/requests-2.19.1-py2.py3-none-any.whl (91kB)
  40. Collecting clint (from -r sensegram/requirements.txt (line 2))
  41. Downloading https://files.pythonhosted.org/packages/3d/b4/41ecb1516f1ba728f39ee7062b9dac1352d39823f513bb6f9e8aeb86e26d/clint-0.5.1.tar.gz
  42. Collecting bidict (from -r sensegram/requirements.txt (line 3))
  43. Downloading https://files.pythonhosted.org/packages/79/a8/83a52f422b1c041758fcfa3ac4438fc92a14e3cbe2b36f97282d973aff55/bidict-0.17.2.tar.gz (266kB)
  44. Collecting numpy (from -r sensegram/requirements.txt (line 4))
  45. Downloading https://files.pythonhosted.org/packages/3a/20/c81632328b1a4e1db65f45c0a1350a9c5341fd4bbb8ea66cdd98da56fe2e/numpy-1.15.0.zip (4.5MB)
  46. Collecting pandas (from -r sensegram/requirements.txt (line 5))
  47. Downloading https://files.pythonhosted.org/packages/e9/ad/5e92ba493eff96055a23b0a1323a9a803af71ec859ae3243ced86fcbd0a4/pandas-0.23.4.tar.gz (10.5MB)
  48. Collecting gensim (from -r sensegram/requirements.txt (line 6))
  49. Downloading https://files.pythonhosted.org/packages/d1/8d/f20e715f3eae5a277b13a31d440d65f294fadbc2047c4d02226e1de05b6e/gensim-3.5.0.tar.gz (22.9MB)
  50. ^[[B^[[ACollecting cython (from -r sensegram/requirements.txt (line 7))
  51. Downloading https://files.pythonhosted.org/packages/21/89/ca320e5b45d381ae0df74c4b5694f1471c1b2453c5eb4bac3449f5970481/Cython-0.28.5.tar.gz (1.9MB)
  52. Collecting stop_words (from -r sensegram/requirements.txt (line 8))
  53. Downloading https://files.pythonhosted.org/packages/1c/cb/d58290804b7a4c5daa42abbbe2a93c477ae53e45541b1825e86f0dfaaf63/stop-words-2018.7.23.tar.gz
  54. Collecting chinese_whispers (from -r sensegram/requirements.txt (line 9))
  55. Downloading https://files.pythonhosted.org/packages/dd/cb/ca1c9d7b6983c6d41101639e49e6807a35fc36a206cb13e83e59f9767dc0/chinese-whispers-0.4.tar.gz
  56. Collecting spacy (from -r sensegram/requirements.txt (line 10))
  57. Downloading https://files.pythonhosted.org/packages/24/de/ac14cd453c98656d6738a5669f96a4ac7f668493d5e6b78227ac933c5fd4/spacy-2.0.12.tar.gz (22.0MB)
  58. Collecting sklearn (from -r sensegram/requirements.txt (line 11))
  59. Downloading https://files.pythonhosted.org/packages/1e/7a/dbb3be0ce9bd5c8b7e3d87328e79063f8b263b2b1bfa4774cb1147bfcd3f/sklearn-0.0.tar.gz
  60. Collecting tqdm (from -r sensegram/requirements.txt (line 12))
  61. Downloading https://files.pythonhosted.org/packages/7d/e6/19dfaff08fcbee7f3453e5b537e65a8364f1945f921a36d08be1e2ff3475/tqdm-4.24.0-py2.py3-none-any.whl (43kB)
  62. Collecting chardet<3.1.0,>=3.0.2 (from requests->-r sensegram/requirements.txt (line 1))
  63. Downloading https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl (133kB)
  64. Collecting urllib3<1.24,>=1.21.1 (from requests->-r sensegram/requirements.txt (line 1))
  65. Downloading https://files.pythonhosted.org/packages/bd/c9/6fdd990019071a4a32a5e7cb78a1d92c53851ef4f56f62a3486e6a7d8ffb/urllib3-1.23-py2.py3-none-any.whl (133kB)
  66. Collecting idna<2.8,>=2.5 (from requests->-r sensegram/requirements.txt (line 1))
  67. Downloading https://files.pythonhosted.org/packages/4b/2a/0276479a4b3caeb8a8c1af2f8e4355746a97fab05a372e4a2c6a6b876165/idna-2.7-py2.py3-none-any.whl (58kB)
  68. Collecting certifi>=2017.4.17 (from requests->-r sensegram/requirements.txt (line 1))
  69. Downloading https://files.pythonhosted.org/packages/16/1f/50d729c104b21c1042aa51560da6141d1cab476ba7015d92b2111c8db841/certifi-2018.8.13-py2.py3-none-any.whl (146kB)
  70. Collecting args (from clint->-r sensegram/requirements.txt (line 2))
  71. Downloading https://files.pythonhosted.org/packages/e5/1c/b701b3f4bd8d3667df8342f311b3efaeab86078a840fb826bd204118cc6b/args-0.1.0.tar.gz
  72. Collecting python-dateutil>=2.5.0 (from pandas->-r sensegram/requirements.txt (line 5))
  73. Downloading https://files.pythonhosted.org/packages/cf/f5/af2b09c957ace60dcfac112b669c45c8c97e32f94aa8b56da4c6d1682825/python_dateutil-2.7.3-py2.py3-none-any.whl (211kB)
  74. Collecting pytz>=2011k (from pandas->-r sensegram/requirements.txt (line 5))
  75. Downloading https://files.pythonhosted.org/packages/30/4e/27c34b62430286c6d59177a0842ed90dc789ce5d1ed740887653b898779a/pytz-2018.5-py2.py3-none-any.whl (510kB)
  76. Collecting scipy>=0.18.1 (from gensim->-r sensegram/requirements.txt (line 6))
  77. Downloading https://files.pythonhosted.org/packages/07/76/7e844757b9f3bf5ab9f951ccd3e4a8eed91ab8720b0aac8c2adcc2fdae9f/scipy-1.1.0.tar.gz (15.6MB)
  78. Collecting six>=1.5.0 (from gensim->-r sensegram/requirements.txt (line 6))
  79. Downloading https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl
  80. Collecting smart_open>=1.2.1 (from gensim->-r sensegram/requirements.txt (line 6))
  81. Downloading https://files.pythonhosted.org/packages/cf/3d/5f3a9a296d0ba8e00e263a8dee76762076b9eb5ddc254ccaa834651c8d65/smart_open-1.6.0.tar.gz
  82. Collecting networkx (from chinese_whispers->-r sensegram/requirements.txt (line 9))
  83. Downloading https://files.pythonhosted.org/packages/11/42/f951cc6838a4dff6ce57211c4d7f8444809ccbe2134179950301e5c4c83c/networkx-2.1.zip (1.6MB)
  84. Collecting murmurhash<0.29,>=0.28 (from spacy->-r sensegram/requirements.txt (line 10))
  85. Downloading https://files.pythonhosted.org/packages/5e/31/c8c1ecafa44db30579c8c457ac7a0f819e8b1dbc3e58308394fff5ff9ba7/murmurhash-0.28.0.tar.gz
  86. Collecting cymem<1.32,>=1.30 (from spacy->-r sensegram/requirements.txt (line 10))
  87. Downloading https://files.pythonhosted.org/packages/f8/9e/273fbea507de99166c11cd0cb3fde1ac01b5bc724d9a407a2f927ede91a1/cymem-1.31.2.tar.gz
  88. Collecting preshed<2.0.0,>=1.0.0 (from spacy->-r sensegram/requirements.txt (line 10))
  89. Downloading https://files.pythonhosted.org/packages/be/fc/09684555ce0ee7086675e6be698e4efeb6d9b315fd5aa96bed347572282b/preshed-1.0.1.tar.gz (112kB)
  90. Collecting thinc<6.11.0,>=6.10.3 (from spacy->-r sensegram/requirements.txt (line 10))
  91. Downloading https://files.pythonhosted.org/packages/94/b1/47a88072d0a38b3594c0a638a62f9ef7c742b8b8a87f7b105f7ed720b14b/thinc-6.10.3.tar.gz (1.2MB)
  92. Collecting plac<1.0.0,>=0.9.6 (from spacy->-r sensegram/requirements.txt (line 10))
  93. Downloading https://files.pythonhosted.org/packages/9e/9b/62c60d2f5bc135d2aa1d8c8a86aaf84edb719a59c7f11a4316259e61a298/plac-0.9.6-py2.py3-none-any.whl
  94. Collecting ujson>=1.35 (from spacy->-r sensegram/requirements.txt (line 10))
  95. Downloading https://files.pythonhosted.org/packages/16/c4/79f3409bc710559015464e5f49b9879430d8f87498ecdc335899732e5377/ujson-1.35.tar.gz (192kB)
  96. Collecting dill<0.3,>=0.2 (from spacy->-r sensegram/requirements.txt (line 10))
  97. Downloading https://files.pythonhosted.org/packages/6f/78/8b96476f4ae426db71c6e86a8e6a81407f015b34547e442291cd397b18f3/dill-0.2.8.2.tar.gz (150kB)
  98. Collecting regex==2017.4.5 (from spacy->-r sensegram/requirements.txt (line 10))
  99. Downloading https://files.pythonhosted.org/packages/36/62/c0c0d762ffd4ffaf39f372eb8561b8d491a11ace5a7884610424a8b40f95/regex-2017.04.05.tar.gz (601kB)
  100. Collecting scikit-learn (from sklearn->-r sensegram/requirements.txt (line 11))
  101. Downloading https://files.pythonhosted.org/packages/25/b6/454cf208be93efa3db50ce06b732328c57ede005d1dcfa71d9a1548530b0/scikit-learn-0.19.2.tar.gz (9.7MB)
  102. Collecting boto>=2.32 (from smart_open>=1.2.1->gensim->-r sensegram/requirements.txt (line 6))
  103. Downloading https://files.pythonhosted.org/packages/23/10/c0b78c27298029e4454a472a1919bde20cb182dab1662cec7f2ca1dcc523/boto-2.49.0-py2.py3-none-any.whl (1.4MB)
  104. Collecting bz2file (from smart_open>=1.2.1->gensim->-r sensegram/requirements.txt (line 6))
  105. Downloading https://files.pythonhosted.org/packages/61/39/122222b5e85cd41c391b68a99ee296584b2a2d1d233e7ee32b4532384f2d/bz2file-0.98.tar.gz
  106. Collecting boto3 (from smart_open>=1.2.1->gensim->-r sensegram/requirements.txt (line 6))
  107. Downloading https://files.pythonhosted.org/packages/c9/cd/d48602dc99ecb52876cf741477f15c874b631e5776723f27092693a5b535/boto3-1.7.80-py2.py3-none-any.whl (128kB)
  108. Collecting decorator>=4.1.0 (from networkx->chinese_whispers->-r sensegram/requirements.txt (line 9))
  109. Downloading https://files.pythonhosted.org/packages/bc/bb/a24838832ba35baf52f32ab1a49b906b5f82fb7c76b2f6a7e35e140bac30/decorator-4.3.0-py2.py3-none-any.whl
  110. Collecting msgpack<1.0.0,>=0.5.6 (from thinc<6.11.0,>=6.10.3->spacy->-r sensegram/requirements.txt (line 10))
  111. Downloading https://files.pythonhosted.org/packages/f3/b6/9affbea179c3c03a0eb53515d9ce404809a122f76bee8fc8c6ec9497f51f/msgpack-0.5.6.tar.gz (138kB)
  112. Collecting msgpack-numpy<1.0.0,>=0.4.1 (from thinc<6.11.0,>=6.10.3->spacy->-r sensegram/requirements.txt (line 10))
  113. Downloading https://files.pythonhosted.org/packages/84/09/fc890664a7a1dd0a88f46c93fb9340d0a27a69e82095a4a54aef2ed94a6d/msgpack_numpy-0.4.3.1-py2.py3-none-any.whl
  114. Collecting cytoolz<0.10,>=0.9.0 (from thinc<6.11.0,>=6.10.3->spacy->-r sensegram/requirements.txt (line 10))
  115. Downloading https://files.pythonhosted.org/packages/36/f4/9728ba01ccb2f55df9a5af029b48ba0aaca1081bbd7823ea2ee223ba7a42/cytoolz-0.9.0.1.tar.gz (443kB)
  116. Collecting wrapt<1.11.0,>=1.10.0 (from thinc<6.11.0,>=6.10.3->spacy->-r sensegram/requirements.txt (line 10))
  117. Downloading https://files.pythonhosted.org/packages/a0/47/66897906448185fcb77fc3c2b1bc20ed0ecca81a0f2f88eda3fc5a34fc3d/wrapt-1.10.11.tar.gz
  118. Collecting botocore<1.11.0,>=1.10.80 (from boto3->smart_open>=1.2.1->gensim->-r sensegram/requirements.txt (line 6))
  119. Downloading https://files.pythonhosted.org/packages/5e/cf/b97f44993766af17bf64aeddadf66f63b6ebf3d700565cc7ee7b13cd0067/botocore-1.10.80-py2.py3-none-any.whl (4.5MB)
  120. Collecting jmespath<1.0.0,>=0.7.1 (from boto3->smart_open>=1.2.1->gensim->-r sensegram/requirements.txt (line 6))
  121. Downloading https://files.pythonhosted.org/packages/b7/31/05c8d001f7f87f0f07289a5fc0fc3832e9a57f2dbd4d3b0fee70e0d51365/jmespath-0.9.3-py2.py3-none-any.whl
  122. Collecting s3transfer<0.2.0,>=0.1.10 (from boto3->smart_open>=1.2.1->gensim->-r sensegram/requirements.txt (line 6))
  123. Downloading https://files.pythonhosted.org/packages/d7/14/2a0004d487464d120c9fb85313a75cd3d71a7506955be458eebfe19a6b1d/s3transfer-0.1.13-py2.py3-none-any.whl (59kB)
  124. Collecting toolz>=0.8.0 (from cytoolz<0.10,>=0.9.0->thinc<6.11.0,>=6.10.3->spacy->-r sensegram/requirements.txt (line 10))
  125. Downloading https://files.pythonhosted.org/packages/14/d0/a73c15bbeda3d2e7b381a36afb0d9cd770a9f4adc5d1532691013ba881db/toolz-0.9.0.tar.gz (45kB)
  126. Collecting docutils>=0.10 (from botocore<1.11.0,>=1.10.80->boto3->smart_open>=1.2.1->gensim->-r sensegram/requirements.txt (line 6))
  127. Downloading https://files.pythonhosted.org/packages/36/fa/08e9e6e0e3cbd1d362c3bbee8d01d0aedb2155c4ac112b19ef3cae8eed8d/docutils-0.14-py3-none-any.whl (543kB)
  128. Building wheels for collected packages: clint, bidict, numpy, pandas, gensim, cython, stop-words, chinese-whispers, spacy, sklearn, args, scipy, smart-open, networkx, murmurhash, cymem, preshed, thinc, ujson, dill, regex, scikit-learn, bz2file, msgpack, cytoolz, wrapt, toolz
  129. Running setup.py bdist_wheel for clint: started
  130. Running setup.py bdist_wheel for clint: finished with status 'done'
  131. Stored in directory: /root/.cache/pip/wheels/4f/e9/45/223565e5b1a4b09e12c6de6f8ba7c2c0e9127dec17cf830f83
  132. Running setup.py bdist_wheel for bidict: started
  133. Running setup.py bdist_wheel for bidict: finished with status 'done'
  134. Stored in directory: /root/.cache/pip/wheels/7e/ee/91/86de66a804871a0a43e512dda6336b9f82cd19a418c794d8e6
  135. Running setup.py bdist_wheel for numpy: started
  136. Running setup.py bdist_wheel for numpy: still running...
  137. Running setup.py bdist_wheel for numpy: still running...
  138. Running setup.py bdist_wheel for numpy: still running...
  139. Running setup.py bdist_wheel for numpy: finished with status 'done'
  140. Stored in directory: /root/.cache/pip/wheels/77/d2/00/03180c22fc40b6f17f6a5c6ea0fa1689734a9cf4cf54179a1c
  141. Running setup.py bdist_wheel for pandas: started
  142. Running setup.py bdist_wheel for pandas: still running...
  143. Running setup.py bdist_wheel for pandas: still running...
  144. Running setup.py bdist_wheel for pandas: still running...
  145. Running setup.py bdist_wheel for pandas: still running...
  146. Running setup.py bdist_wheel for pandas: still running...
  147. Running setup.py bdist_wheel for pandas: still running...
  148. Running setup.py bdist_wheel for pandas: still running...
  149. Running setup.py bdist_wheel for pandas: still running...
  150. Running setup.py bdist_wheel for pandas: still running...
  151. Running setup.py bdist_wheel for pandas: finished with status 'done'
  152. Stored in directory: /root/.cache/pip/wheels/17/14/9c/b780eacf394da2cb919905226b46648234a8ca9897bbacc6de
  153. Running setup.py bdist_wheel for gensim: started
  154. Running setup.py bdist_wheel for gensim: finished with status 'done'
  155. Stored in directory: /root/.cache/pip/wheels/26/7b/c6/8f29903415a88fc8c9fb99c6c027684d5ce7e6da98cf71a5b9
  156. Running setup.py bdist_wheel for cython: started
  157. Running setup.py bdist_wheel for cython: still running...
  158. Running setup.py bdist_wheel for cython: still running...
  159. Running setup.py bdist_wheel for cython: finished with status 'done'
  160. Stored in directory: /root/.cache/pip/wheels/2e/a7/83/eea73633cede8a0847eccad1df0d17195f03d972974392a935
  161. Running setup.py bdist_wheel for stop-words: started
  162. Running setup.py bdist_wheel for stop-words: finished with status 'done'
  163. Stored in directory: /root/.cache/pip/wheels/75/37/6a/2b295e03bd07290f0da95c3adb9a74ba95fbc333aa8b0c7c78
  164. Running setup.py bdist_wheel for chinese-whispers: started
  165. Running setup.py bdist_wheel for chinese-whispers: finished with status 'done'
  166. Stored in directory: /root/.cache/pip/wheels/32/c7/e0/f39d6fd56c9f895322078f827e7a9fad3e54e22b6c2e7f122c
  167. Running setup.py bdist_wheel for spacy: started
  168. Running setup.py bdist_wheel for spacy: still running...
  169. Running setup.py bdist_wheel for spacy: still running...
  170. Running setup.py bdist_wheel for spacy: still running...
  171. Running setup.py bdist_wheel for spacy: still running...
  172. Running setup.py bdist_wheel for spacy: still running...
  173. Running setup.py bdist_wheel for spacy: finished with status 'done'
  174. Stored in directory: /root/.cache/pip/wheels/60/0b/bb/7c2e28db574dbb2358176934eddd32a1c5f838ba0bc23eaaab
  175. Running setup.py bdist_wheel for sklearn: started
  176. Running setup.py bdist_wheel for sklearn: finished with status 'done'
  177. Stored in directory: /root/.cache/pip/wheels/76/03/bb/589d421d27431bcd2c6da284d5f2286c8e3b2ea3cf1594c074
  178. Running setup.py bdist_wheel for args: started
  179. Running setup.py bdist_wheel for args: finished with status 'done'
  180. Stored in directory: /root/.cache/pip/wheels/58/54/ea/d995d18af68c057eb76b87b02c92bc66ac34d360ef141780f4
  181. Running setup.py bdist_wheel for scipy: started
  182. Running setup.py bdist_wheel for scipy: finished with status 'error'
  183. Complete output from command /usr/bin/python3.6 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-ncd50_i2/scipy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/pip-wheel-z6pn2l0z --python-tag cp36:
  184. Traceback (most recent call last):
  185. File "<string>", line 1, in <module>
  186. File "/tmp/pip-install-ncd50_i2/scipy/setup.py", line 474, in <module>
  187. setup_package()
  188. File "/tmp/pip-install-ncd50_i2/scipy/setup.py", line 450, in setup_package
  189. from numpy.distutils.core import setup
  190. ModuleNotFoundError: No module named 'numpy'
  191.  
  192. ----------------------------------------
  193. Failed building wheel for scipy
  194. Running setup.py clean for scipy
  195. Complete output from command /usr/bin/python3.6 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-ncd50_i2/scipy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" clean --all:
  196.  
  197. `setup.py clean` is not supported, use one of the following instead:
  198.  
  199. - `git clean -xdf` (cleans all files)
  200. - `git clean -Xdf` (cleans all versioned files, doesn't touch
  201. files that aren't checked into the git repo)
  202.  
  203. Add `--force` to your command to use it anyway if you must (unsupported).
  204.  
  205.  
  206. ----------------------------------------
  207. Running setup.py bdist_wheel for smart-open: started
  208. Failed cleaning build dir for scipy
  209. Running setup.py bdist_wheel for smart-open: finished with status 'done'
  210. Stored in directory: /root/.cache/pip/wheels/73/f1/9b/ccf93d4ba073b6f79b1ed9df68ab5ce048d8136d0efcf90b30
  211. Running setup.py bdist_wheel for networkx: started
  212. Running setup.py bdist_wheel for networkx: finished with status 'done'
  213. Stored in directory: /root/.cache/pip/wheels/44/c0/34/6f98693a554301bdb405f8d65d95bbcd3e50180cbfdd98a94e
  214. Running setup.py bdist_wheel for murmurhash: started
  215. Running setup.py bdist_wheel for murmurhash: finished with status 'done'
  216. Stored in directory: /root/.cache/pip/wheels/b8/94/a4/f69f8664cdc1098603df44771b7fec5fd1b3d8364cdd83f512
  217. Running setup.py bdist_wheel for cymem: started
  218. Running setup.py bdist_wheel for cymem: finished with status 'done'
  219. Stored in directory: /root/.cache/pip/wheels/55/8d/4a/f6328252aa2aaec0b1cb906fd96a1566d77f0f67701071ad13
  220. Running setup.py bdist_wheel for preshed: started
  221. Running setup.py bdist_wheel for preshed: finished with status 'done'
  222. Stored in directory: /root/.cache/pip/wheels/ca/e5/8b/73706d7232da301838e0bc564367a2f7b2fc8f834228fc8a4b
  223. Running setup.py bdist_wheel for thinc: started
  224. Running setup.py bdist_wheel for thinc: still running...
  225. Running setup.py bdist_wheel for thinc: finished with status 'done'
  226. Stored in directory: /root/.cache/pip/wheels/db/bc/e1/9b321b6b203288cf636a56e668ed5700076af4ed66062278ca
  227. Running setup.py bdist_wheel for ujson: started
  228. Running setup.py bdist_wheel for ujson: finished with status 'done'
  229. Stored in directory: /root/.cache/pip/wheels/28/77/e4/0311145b9c2e2f01470e744855131f9e34d6919687550f87d1
  230. Running setup.py bdist_wheel for dill: started
  231. Running setup.py bdist_wheel for dill: finished with status 'done'
  232. Stored in directory: /root/.cache/pip/wheels/e2/5d/17/f87cb7751896ac629b435a8696f83ee75b11029f5d6f6bda72
  233. Running setup.py bdist_wheel for regex: started
  234. Running setup.py bdist_wheel for regex: finished with status 'done'
  235. Stored in directory: /root/.cache/pip/wheels/75/07/38/3c16b529d50cb4e0cd3dbc7b75cece8a09c132692c74450b01
  236. Running setup.py bdist_wheel for scikit-learn: started
  237. Running setup.py bdist_wheel for scikit-learn: finished with status 'error'
  238. Complete output from command /usr/bin/python3.6 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-ncd50_i2/scikit-learn/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/pip-wheel-5quztdyl --python-tag cp36:
  239. Partial import of sklearn during the build process.
  240. Traceback (most recent call last):
  241. File "/tmp/pip-install-ncd50_i2/scikit-learn/setup.py", line 168, in get_numpy_status
  242. import numpy
  243. ModuleNotFoundError: No module named 'numpy'
  244. Traceback (most recent call last):
  245. File "/tmp/pip-install-ncd50_i2/scikit-learn/setup.py", line 148, in get_scipy_status
  246. import scipy
  247. ModuleNotFoundError: No module named 'scipy'
  248. Traceback (most recent call last):
  249. File "<string>", line 1, in <module>
  250. File "/tmp/pip-install-ncd50_i2/scikit-learn/setup.py", line 269, in <module>
  251. setup_package()
  252. File "/tmp/pip-install-ncd50_i2/scikit-learn/setup.py", line 249, in setup_package
  253. .format(numpy_req_str, instructions))
  254. ImportError: Numerical Python (NumPy) is not installed.
  255. scikit-learn requires NumPy >= 1.8.2.
  256. Installation instructions are available on the scikit-learn website: http://scikit-learn.org/stable/install.html
  257.  
  258.  
  259. ----------------------------------------
  260. Failed building wheel for scikit-learn
  261. Running setup.py clean for scikit-learn
  262. Running setup.py bdist_wheel for bz2file: started
  263. Running setup.py bdist_wheel for bz2file: finished with status 'done'
  264. Stored in directory: /root/.cache/pip/wheels/81/75/d6/e1317bf09bf1af5a30befc2a007869fa6e1f516b8f7c591cb9
  265. Running setup.py bdist_wheel for msgpack: started
  266. Running setup.py bdist_wheel for msgpack: finished with status 'done'
  267. Stored in directory: /root/.cache/pip/wheels/f0/02/4c/525b56fce78c415eb8066f6554f9de02792df26b8f882f6d65
  268. Running setup.py bdist_wheel for cytoolz: started
  269. Running setup.py bdist_wheel for cytoolz: finished with status 'done'
  270. Stored in directory: /root/.cache/pip/wheels/88/f3/11/9817b001e59ab04889e8cffcbd9087e2e2155b9ebecfc8dd38
  271. Running setup.py bdist_wheel for wrapt: started
  272. Running setup.py bdist_wheel for wrapt: finished with status 'done'
  273. Stored in directory: /root/.cache/pip/wheels/48/5d/04/22361a593e70d23b1f7746d932802efe1f0e523376a74f321e
  274. Running setup.py bdist_wheel for toolz: started
  275. Running setup.py bdist_wheel for toolz: finished with status 'done'
  276. Stored in directory: /root/.cache/pip/wheels/f4/0c/f6/ce6b2d1aa459ee97cc3c0f82236302bd62d89c86c700219463
  277. Successfully built clint bidict numpy pandas gensim cython stop-words chinese-whispers spacy sklearn args smart-open networkx murmurhash cymem preshed thinc ujson dill regex bz2file msgpack cytoolz wrapt toolz
  278. Failed to build scipy scikit-learn
  279. Installing collected packages: chardet, urllib3, idna, certifi, requests, args, clint, bidict, numpy, six, python-dateutil, pytz, pandas, scipy, boto, bz2file, docutils, jmespath, botocore, s3transfer, boto3, smart-open, gensim, cython, stop-words, decorator, networkx, chinese-whispers, murmurhash, cymem, preshed, msgpack, msgpack-numpy, toolz, cytoolz, wrapt, plac, tqdm, dill, thinc, ujson, regex, spacy, scikit-learn, sklearn
  280. Running setup.py install for scipy: started
  281. Running setup.py install for scipy: finished with status 'error'
  282. Complete output from command /usr/bin/python3.6 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-ncd50_i2/scipy/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-record-kd6tb1so/install-record.txt --single-version-externally-managed --compile:
  283.  
  284. Note: if you need reliable uninstall behavior, then install
  285. with pip instead of using `setup.py install`:
  286.  
  287. - `pip install .` (from a git repo or downloaded source
  288. release)
  289. - `pip install scipy` (last SciPy release on PyPI)
  290.  
  291.  
  292. lapack_opt_info:
  293. lapack_mkl_info:
  294. customize UnixCCompiler
  295. libraries mkl_rt not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
  296. NOT AVAILABLE
  297.  
  298. openblas_lapack_info:
  299. customize UnixCCompiler
  300. customize UnixCCompiler
  301. libraries openblas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
  302. NOT AVAILABLE
  303.  
  304. openblas_clapack_info:
  305. customize UnixCCompiler
  306. customize UnixCCompiler
  307. libraries openblas,lapack not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
  308. NOT AVAILABLE
  309.  
  310. atlas_3_10_threads_info:
  311. Setting PTATLAS=ATLAS
  312. customize UnixCCompiler
  313. libraries tatlas,tatlas not found in /usr/local/lib
  314. customize UnixCCompiler
  315. libraries lapack_atlas not found in /usr/local/lib
  316. customize UnixCCompiler
  317. libraries tatlas,tatlas not found in /usr/lib
  318. customize UnixCCompiler
  319. libraries lapack_atlas not found in /usr/lib
  320. customize UnixCCompiler
  321. libraries tatlas,tatlas not found in /usr/lib/
  322. customize UnixCCompiler
  323. libraries lapack_atlas not found in /usr/lib/
  324. <class 'numpy.distutils.system_info.atlas_3_10_threads_info'>
  325. NOT AVAILABLE
  326.  
  327. atlas_3_10_info:
  328. customize UnixCCompiler
  329. libraries satlas,satlas not found in /usr/local/lib
  330. customize UnixCCompiler
  331. libraries lapack_atlas not found in /usr/local/lib
  332. customize UnixCCompiler
  333. libraries satlas,satlas not found in /usr/lib
  334. customize UnixCCompiler
  335. libraries lapack_atlas not found in /usr/lib
  336. customize UnixCCompiler
  337. libraries satlas,satlas not found in /usr/lib/
  338. customize UnixCCompiler
  339. libraries lapack_atlas not found in /usr/lib/
  340. <class 'numpy.distutils.system_info.atlas_3_10_info'>
  341. NOT AVAILABLE
  342.  
  343. atlas_threads_info:
  344. Setting PTATLAS=ATLAS
  345. customize UnixCCompiler
  346. libraries ptf77blas,ptcblas,atlas not found in /usr/local/lib
  347. customize UnixCCompiler
  348. libraries lapack_atlas not found in /usr/local/lib
  349. customize UnixCCompiler
  350. libraries ptf77blas,ptcblas,atlas not found in /usr/lib
  351. customize UnixCCompiler
  352. libraries lapack_atlas not found in /usr/lib
  353. customize UnixCCompiler
  354. libraries ptf77blas,ptcblas,atlas not found in /usr/lib/
  355. customize UnixCCompiler
  356. libraries lapack_atlas not found in /usr/lib/
  357. <class 'numpy.distutils.system_info.atlas_threads_info'>
  358. NOT AVAILABLE
  359.  
  360. atlas_info:
  361. customize UnixCCompiler
  362. libraries f77blas,cblas,atlas not found in /usr/local/lib
  363. customize UnixCCompiler
  364. libraries lapack_atlas not found in /usr/local/lib
  365. customize UnixCCompiler
  366. libraries f77blas,cblas,atlas not found in /usr/lib
  367. customize UnixCCompiler
  368. libraries lapack_atlas not found in /usr/lib
  369. customize UnixCCompiler
  370. libraries f77blas,cblas,atlas not found in /usr/lib/
  371. customize UnixCCompiler
  372. libraries lapack_atlas not found in /usr/lib/
  373. <class 'numpy.distutils.system_info.atlas_info'>
  374. NOT AVAILABLE
  375.  
  376. accelerate_info:
  377. NOT AVAILABLE
  378.  
  379. /usr/lib/python3.6/site-packages/numpy/distutils/system_info.py:625: UserWarning:
  380. Atlas (http://math-atlas.sourceforge.net/) libraries not found.
  381. Directories to search for the libraries can be specified in the
  382. numpy/distutils/site.cfg file (section [atlas]) or by setting
  383. the ATLAS environment variable.
  384. self.calc_info()
  385. lapack_info:
  386. customize UnixCCompiler
  387. libraries lapack not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
  388. NOT AVAILABLE
  389.  
  390. /usr/lib/python3.6/site-packages/numpy/distutils/system_info.py:625: UserWarning:
  391. Lapack (http://www.netlib.org/lapack/) libraries not found.
  392. Directories to search for the libraries can be specified in the
  393. numpy/distutils/site.cfg file (section [lapack]) or by setting
  394. the LAPACK environment variable.
  395. self.calc_info()
  396. lapack_src_info:
  397. NOT AVAILABLE
  398.  
  399. /usr/lib/python3.6/site-packages/numpy/distutils/system_info.py:625: UserWarning:
  400. Lapack (http://www.netlib.org/lapack/) sources not found.
  401. Directories to search for the sources can be specified in the
  402. numpy/distutils/site.cfg file (section [lapack_src]) or by setting
  403. the LAPACK_SRC environment variable.
  404. self.calc_info()
  405. NOT AVAILABLE
  406.  
  407. Running from scipy source directory.
  408. Traceback (most recent call last):
  409. File "<string>", line 1, in <module>
  410. File "/tmp/pip-install-ncd50_i2/scipy/setup.py", line 474, in <module>
  411. setup_package()
  412. File "/tmp/pip-install-ncd50_i2/scipy/setup.py", line 470, in setup_package
  413. setup(**metadata)
  414. File "/usr/lib/python3.6/site-packages/numpy/distutils/core.py", line 135, in setup
  415. config = configuration()
  416. File "/tmp/pip-install-ncd50_i2/scipy/setup.py", line 388, in configuration
  417. config.add_subpackage('scipy')
  418. File "/usr/lib/python3.6/site-packages/numpy/distutils/misc_util.py", line 1034, in add_subpackage
  419. caller_level = 2)
  420. File "/usr/lib/python3.6/site-packages/numpy/distutils/misc_util.py", line 1003, in get_subpackage
  421. caller_level = caller_level + 1)
  422. File "/usr/lib/python3.6/site-packages/numpy/distutils/misc_util.py", line 940, in _get_configuration_from_setup_py
  423. config = setup_module.configuration(*args)
  424. File "scipy/setup.py", line 15, in configuration
  425. config.add_subpackage('linalg')
  426. File "/usr/lib/python3.6/site-packages/numpy/distutils/misc_util.py", line 1034, in add_subpackage
  427. caller_level = 2)
  428. File "/usr/lib/python3.6/site-packages/numpy/distutils/misc_util.py", line 1003, in get_subpackage
  429. caller_level = caller_level + 1)
  430. File "/usr/lib/python3.6/site-packages/numpy/distutils/misc_util.py", line 940, in _get_configuration_from_setup_py
  431. config = setup_module.configuration(*args)
  432. File "scipy/linalg/setup.py", line 19, in configuration
  433. raise NotFoundError('no lapack/blas resources found')
  434. numpy.distutils.system_info.NotFoundError: no lapack/blas resources found
  435.  
  436. ----------------------------------------
  437. Command "/usr/bin/python3.6 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-ncd50_i2/scipy/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-record-kd6tb1so/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-ncd50_i2/scipy/
  438. The command '/bin/sh -c pip3 install -r sensegram/requirements.txt' returned a non-zero code: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement