Advertisement
Guest User

intsall steps

a guest
Dec 11th, 2017
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.94 KB | None | 0 0
  1. ancientevil@ancientevil-GT70:~$ sudo apt-get install libssl-dev build-essential automake pkg-config libtool libffi-dev libgmp-dev
  2. Reading package lists... Done
  3. Building dependency tree
  4. Reading state information... Done
  5. automake is already the newest version (1:1.15-4ubuntu1).
  6. build-essential is already the newest version (12.1ubuntu2).
  7. libffi-dev is already the newest version (3.2.1-4).
  8. libffi-dev set to manually installed.
  9. libtool is already the newest version (2.4.6-0.1).
  10. pkg-config is already the newest version (0.29.1-0ubuntu1).
  11. libssl-dev is already the newest version (1.0.2g-1ubuntu4.10).
  12. The following additional packages will be installed:
  13. libgmpxx4ldbl
  14. Suggested packages:
  15. gmp-doc libgmp10-doc libmpfr-dev
  16. The following NEW packages will be installed:
  17. libgmp-dev libgmpxx4ldbl
  18. 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
  19. Need to get 323 kB of archives.
  20. After this operation, 1,695 kB of additional disk space will be used.
  21. Do you want to continue? [Y/n] y
  22. Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libgmpxx4ldbl amd64 2:6.1.0+dfsg-2 [8,948 B]
  23. Get:2 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libgmp-dev amd64 2:6.1.0+dfsg-2 [314 kB]
  24. Fetched 323 kB in 0s (456 kB/s)
  25. Selecting previously unselected package libgmpxx4ldbl:amd64.
  26. (Reading database ... 246877 files and directories currently installed.)
  27. Preparing to unpack .../libgmpxx4ldbl_2%3a6.1.0+dfsg-2_amd64.deb ...
  28. Unpacking libgmpxx4ldbl:amd64 (2:6.1.0+dfsg-2) ...
  29. Selecting previously unselected package libgmp-dev:amd64.
  30. Preparing to unpack .../libgmp-dev_2%3a6.1.0+dfsg-2_amd64.deb ...
  31. Unpacking libgmp-dev:amd64 (2:6.1.0+dfsg-2) ...
  32. Processing triggers for libc-bin (2.23-0ubuntu9) ...
  33. Setting up libgmpxx4ldbl:amd64 (2:6.1.0+dfsg-2) ...
  34. Setting up libgmp-dev:amd64 (2:6.1.0+dfsg-2) ...
  35. Processing triggers for libc-bin (2.23-0ubuntu9) ...
  36. ancientevil@ancientevil-GT70:~$ git clone https://github.com/ethereum/pyethereum/
  37. Cloning into 'pyethereum'...
  38. remote: Counting objects: 15647, done.
  39. remote: Compressing objects: 100% (33/33), done.
  40. remote: Total 15647 (delta 21), reused 17 (delta 7), pack-reused 15607
  41. Receiving objects: 100% (15647/15647), 5.36 MiB | 1.20 MiB/s, done.
  42. Resolving deltas: 100% (11634/11634), done.
  43. Checking connectivity... done.
  44. ancientevil@ancientevil-GT70:~$ cd pyethereum/
  45. ancientevil@ancientevil-GT70:~/pyethereum$ python3 setup.py install
  46. running install
  47. Checking .pth file support in /usr/local/lib/python3.5/dist-packages/
  48. error: can't create or remove files in install directory
  49.  
  50. The following error occurred while trying to add or remove files in the
  51. installation directory:
  52.  
  53. [Errno 13] Permission denied: '/usr/local/lib/python3.5/dist-packages/test-easy-install-15482.pth'
  54.  
  55. The installation directory you specified (via --install-dir, --prefix, or
  56. the distutils default setting) was:
  57.  
  58. /usr/local/lib/python3.5/dist-packages/
  59.  
  60. Perhaps your account does not have write access to this directory? If the
  61. installation directory is a system-owned directory, you may need to sign in
  62. as the administrator or "root" account. If you do not have administrative
  63. access to this machine, you may wish to choose a different installation
  64. directory, preferably one that is listed in your PYTHONPATH environment
  65. variable.
  66.  
  67. For information on other options, you may wish to consult the
  68. documentation at:
  69.  
  70. https://pythonhosted.org/setuptools/easy_install.html
  71.  
  72. Please make the appropriate changes for your system and try again.
  73.  
  74. ancientevil@ancientevil-GT70:~/pyethereum$ sudo python3 setup.py install
  75. running install
  76. Checking .pth file support in /usr/local/lib/python3.5/dist-packages/
  77. /usr/bin/python3 -E -c pass
  78. TEST PASSED: /usr/local/lib/python3.5/dist-packages/ appears to support .pth files
  79. running bdist_egg
  80. running egg_info
  81. creating ethereum.egg-info
  82. writing ethereum.egg-info/PKG-INFO
  83. writing dependency_links to ethereum.egg-info/dependency_links.txt
  84. writing top-level names to ethereum.egg-info/top_level.txt
  85. writing requirements to ethereum.egg-info/requires.txt
  86. writing manifest file 'ethereum.egg-info/SOURCES.txt'
  87. reading manifest file 'ethereum.egg-info/SOURCES.txt'
  88. reading manifest template 'MANIFEST.in'
  89. writing manifest file 'ethereum.egg-info/SOURCES.txt'
  90. installing library code to build/bdist.linux-x86_64/egg
  91. running install_lib
  92. running build_py
  93. creating build
  94. creating build/lib
  95. creating build/lib/ethereum
  96. copying ethereum/new_state.py -> build/lib/ethereum
  97. copying ethereum/db.py -> build/lib/ethereum
  98. copying ethereum/abi.py -> build/lib/ethereum
  99. copying ethereum/specials.py -> build/lib/ethereum
  100. copying ethereum/meta.py -> build/lib/ethereum
  101. copying ethereum/transaction_queue.py -> build/lib/ethereum
  102. copying ethereum/child_dao_list.py -> build/lib/ethereum
  103. copying ethereum/__init__.py -> build/lib/ethereum
  104. copying ethereum/common.py -> build/lib/ethereum
  105. copying ethereum/trie.py -> build/lib/ethereum
  106. copying ethereum/messages.py -> build/lib/ethereum
  107. copying ethereum/consensus_strategy.py -> build/lib/ethereum
  108. copying ethereum/transactions.py -> build/lib/ethereum
  109. copying ethereum/config.py -> build/lib/ethereum
  110. copying ethereum/slogging.py -> build/lib/ethereum
  111. copying ethereum/bloom.py -> build/lib/ethereum
  112. copying ethereum/fast_rlp.py -> build/lib/ethereum
  113. copying ethereum/opcodes.py -> build/lib/ethereum
  114. copying ethereum/securetrie.py -> build/lib/ethereum
  115. copying ethereum/fastvm.py -> build/lib/ethereum
  116. copying ethereum/compress.py -> build/lib/ethereum
  117. copying ethereum/utils.py -> build/lib/ethereum
  118. copying ethereum/state.py -> build/lib/ethereum
  119. copying ethereum/genesis_helpers.py -> build/lib/ethereum
  120. copying ethereum/block.py -> build/lib/ethereum
  121. copying ethereum/snapshot.py -> build/lib/ethereum
  122. copying ethereum/exceptions.py -> build/lib/ethereum
  123. copying ethereum/vm.py -> build/lib/ethereum
  124. creating build/lib/tools
  125. copying tools/keystorer.py -> build/lib/tools
  126. copying tools/__init__.py -> build/lib/tools
  127. copying tools/mk_ecpairing_tests.py -> build/lib/tools
  128. copying tools/random_vm_test_generator.py -> build/lib/tools
  129. copying tools/mk_modexp_tests.py -> build/lib/tools
  130. copying tools/fixture_to_example.py -> build/lib/tools
  131. copying tools/mk_ecadd_tests.py -> build/lib/tools
  132. copying tools/evm.py -> build/lib/tools
  133. copying tools/vm_test_generator.py -> build/lib/tools
  134. copying tools/mk_ecmul_tests.py -> build/lib/tools
  135. creating build/lib/ethereum/experimental
  136. copying ethereum/experimental/__init__.py -> build/lib/ethereum/experimental
  137. copying ethereum/experimental/refcount_db.py -> build/lib/ethereum/experimental
  138. copying ethereum/experimental/pruning_trie.py -> build/lib/ethereum/experimental
  139. copying ethereum/experimental/fastvm.py -> build/lib/ethereum/experimental
  140. copying ethereum/experimental/spv.py -> build/lib/ethereum/experimental
  141. creating build/lib/ethereum/pow
  142. copying ethereum/pow/__init__.py -> build/lib/ethereum/pow
  143. copying ethereum/pow/ethash.py -> build/lib/ethereum/pow
  144. copying ethereum/pow/ethash_utils.py -> build/lib/ethereum/pow
  145. copying ethereum/pow/ethpow.py -> build/lib/ethereum/pow
  146. copying ethereum/pow/consensus.py -> build/lib/ethereum/pow
  147. copying ethereum/pow/chain.py -> build/lib/ethereum/pow
  148. creating build/lib/ethereum/hybrid_casper
  149. copying ethereum/hybrid_casper/casper_utils.py -> build/lib/ethereum/hybrid_casper
  150. copying ethereum/hybrid_casper/__init__.py -> build/lib/ethereum/hybrid_casper
  151. copying ethereum/hybrid_casper/validator.py -> build/lib/ethereum/hybrid_casper
  152. copying ethereum/hybrid_casper/consensus.py -> build/lib/ethereum/hybrid_casper
  153. copying ethereum/hybrid_casper/chain.py -> build/lib/ethereum/hybrid_casper
  154. copying ethereum/hybrid_casper/casper_initiating_transactions.py -> build/lib/ethereum/hybrid_casper
  155. creating build/lib/ethereum/tests
  156. copying ethereum/tests/test_opcodes.py -> build/lib/ethereum/tests
  157. copying ethereum/tests/test_compress.py -> build/lib/ethereum/tests
  158. copying ethereum/tests/test_genesis.py -> build/lib/ethereum/tests
  159. copying ethereum/tests/test_blocks.py -> build/lib/ethereum/tests
  160. copying ethereum/tests/__init__.py -> build/lib/ethereum/tests
  161. copying ethereum/tests/test_db.py -> build/lib/ethereum/tests
  162. copying ethereum/tests/test_state.py -> build/lib/ethereum/tests
  163. copying ethereum/tests/test_tester.py -> build/lib/ethereum/tests
  164. copying ethereum/tests/test_trie_next_prev.py -> build/lib/ethereum/tests
  165. copying ethereum/tests/test_abi.py -> build/lib/ethereum/tests
  166. copying ethereum/tests/test_transactions.py -> build/lib/ethereum/tests
  167. copying ethereum/tests/test_contracts.py -> build/lib/ethereum/tests
  168. copying ethereum/tests/test_trie.py -> build/lib/ethereum/tests
  169. copying ethereum/tests/test_chain.py -> build/lib/ethereum/tests
  170. copying ethereum/tests/utils.py -> build/lib/ethereum/tests
  171. copying ethereum/tests/test_bloom.py -> build/lib/ethereum/tests
  172. copying ethereum/tests/test_keys.py -> build/lib/ethereum/tests
  173. copying ethereum/tests/test_difficulty.py -> build/lib/ethereum/tests
  174. copying ethereum/tests/test_serialization.py -> build/lib/ethereum/tests
  175. creating build/lib/ethereum/tools
  176. copying ethereum/tools/_solidity.py -> build/lib/ethereum/tools
  177. copying ethereum/tools/__init__.py -> build/lib/ethereum/tools
  178. copying ethereum/tools/keys.py -> build/lib/ethereum/tools
  179. copying ethereum/tools/testing_lang.py -> build/lib/ethereum/tools
  180. copying ethereum/tools/tester.py -> build/lib/ethereum/tools
  181. copying ethereum/tools/new_statetest_utils.py -> build/lib/ethereum/tools
  182. copying ethereum/tools/testutils.py -> build/lib/ethereum/tools
  183. creating build/bdist.linux-x86_64
  184. creating build/bdist.linux-x86_64/egg
  185. creating build/bdist.linux-x86_64/egg/ethereum
  186. copying build/lib/ethereum/new_state.py -> build/bdist.linux-x86_64/egg/ethereum
  187. copying build/lib/ethereum/db.py -> build/bdist.linux-x86_64/egg/ethereum
  188. copying build/lib/ethereum/abi.py -> build/bdist.linux-x86_64/egg/ethereum
  189. copying build/lib/ethereum/specials.py -> build/bdist.linux-x86_64/egg/ethereum
  190. copying build/lib/ethereum/meta.py -> build/bdist.linux-x86_64/egg/ethereum
  191. copying build/lib/ethereum/transaction_queue.py -> build/bdist.linux-x86_64/egg/ethereum
  192. copying build/lib/ethereum/child_dao_list.py -> build/bdist.linux-x86_64/egg/ethereum
  193. copying build/lib/ethereum/__init__.py -> build/bdist.linux-x86_64/egg/ethereum
  194. copying build/lib/ethereum/common.py -> build/bdist.linux-x86_64/egg/ethereum
  195. creating build/bdist.linux-x86_64/egg/ethereum/experimental
  196. copying build/lib/ethereum/experimental/__init__.py -> build/bdist.linux-x86_64/egg/ethereum/experimental
  197. copying build/lib/ethereum/experimental/refcount_db.py -> build/bdist.linux-x86_64/egg/ethereum/experimental
  198. copying build/lib/ethereum/experimental/pruning_trie.py -> build/bdist.linux-x86_64/egg/ethereum/experimental
  199. copying build/lib/ethereum/experimental/fastvm.py -> build/bdist.linux-x86_64/egg/ethereum/experimental
  200. copying build/lib/ethereum/experimental/spv.py -> build/bdist.linux-x86_64/egg/ethereum/experimental
  201. creating build/bdist.linux-x86_64/egg/ethereum/pow
  202. copying build/lib/ethereum/pow/__init__.py -> build/bdist.linux-x86_64/egg/ethereum/pow
  203. copying build/lib/ethereum/pow/ethash.py -> build/bdist.linux-x86_64/egg/ethereum/pow
  204. copying build/lib/ethereum/pow/ethash_utils.py -> build/bdist.linux-x86_64/egg/ethereum/pow
  205. copying build/lib/ethereum/pow/ethpow.py -> build/bdist.linux-x86_64/egg/ethereum/pow
  206. copying build/lib/ethereum/pow/consensus.py -> build/bdist.linux-x86_64/egg/ethereum/pow
  207. copying build/lib/ethereum/pow/chain.py -> build/bdist.linux-x86_64/egg/ethereum/pow
  208. copying build/lib/ethereum/trie.py -> build/bdist.linux-x86_64/egg/ethereum
  209. creating build/bdist.linux-x86_64/egg/ethereum/hybrid_casper
  210. copying build/lib/ethereum/hybrid_casper/casper_utils.py -> build/bdist.linux-x86_64/egg/ethereum/hybrid_casper
  211. copying build/lib/ethereum/hybrid_casper/__init__.py -> build/bdist.linux-x86_64/egg/ethereum/hybrid_casper
  212. copying build/lib/ethereum/hybrid_casper/validator.py -> build/bdist.linux-x86_64/egg/ethereum/hybrid_casper
  213. copying build/lib/ethereum/hybrid_casper/consensus.py -> build/bdist.linux-x86_64/egg/ethereum/hybrid_casper
  214. copying build/lib/ethereum/hybrid_casper/chain.py -> build/bdist.linux-x86_64/egg/ethereum/hybrid_casper
  215. copying build/lib/ethereum/hybrid_casper/casper_initiating_transactions.py -> build/bdist.linux-x86_64/egg/ethereum/hybrid_casper
  216. copying build/lib/ethereum/messages.py -> build/bdist.linux-x86_64/egg/ethereum
  217. creating build/bdist.linux-x86_64/egg/ethereum/tests
  218. copying build/lib/ethereum/tests/test_opcodes.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  219. copying build/lib/ethereum/tests/test_compress.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  220. copying build/lib/ethereum/tests/test_genesis.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  221. copying build/lib/ethereum/tests/test_blocks.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  222. copying build/lib/ethereum/tests/__init__.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  223. copying build/lib/ethereum/tests/test_db.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  224. copying build/lib/ethereum/tests/test_state.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  225. copying build/lib/ethereum/tests/test_tester.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  226. copying build/lib/ethereum/tests/test_trie_next_prev.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  227. copying build/lib/ethereum/tests/test_abi.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  228. copying build/lib/ethereum/tests/test_transactions.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  229. copying build/lib/ethereum/tests/test_contracts.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  230. copying build/lib/ethereum/tests/test_trie.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  231. copying build/lib/ethereum/tests/test_chain.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  232. copying build/lib/ethereum/tests/utils.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  233. copying build/lib/ethereum/tests/test_bloom.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  234. copying build/lib/ethereum/tests/test_keys.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  235. copying build/lib/ethereum/tests/test_difficulty.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  236. copying build/lib/ethereum/tests/test_serialization.py -> build/bdist.linux-x86_64/egg/ethereum/tests
  237. copying build/lib/ethereum/consensus_strategy.py -> build/bdist.linux-x86_64/egg/ethereum
  238. copying build/lib/ethereum/transactions.py -> build/bdist.linux-x86_64/egg/ethereum
  239. copying build/lib/ethereum/config.py -> build/bdist.linux-x86_64/egg/ethereum
  240. copying build/lib/ethereum/slogging.py -> build/bdist.linux-x86_64/egg/ethereum
  241. copying build/lib/ethereum/bloom.py -> build/bdist.linux-x86_64/egg/ethereum
  242. copying build/lib/ethereum/fast_rlp.py -> build/bdist.linux-x86_64/egg/ethereum
  243. copying build/lib/ethereum/opcodes.py -> build/bdist.linux-x86_64/egg/ethereum
  244. copying build/lib/ethereum/securetrie.py -> build/bdist.linux-x86_64/egg/ethereum
  245. copying build/lib/ethereum/fastvm.py -> build/bdist.linux-x86_64/egg/ethereum
  246. copying build/lib/ethereum/compress.py -> build/bdist.linux-x86_64/egg/ethereum
  247. creating build/bdist.linux-x86_64/egg/ethereum/tools
  248. copying build/lib/ethereum/tools/_solidity.py -> build/bdist.linux-x86_64/egg/ethereum/tools
  249. copying build/lib/ethereum/tools/__init__.py -> build/bdist.linux-x86_64/egg/ethereum/tools
  250. copying build/lib/ethereum/tools/keys.py -> build/bdist.linux-x86_64/egg/ethereum/tools
  251. copying build/lib/ethereum/tools/testing_lang.py -> build/bdist.linux-x86_64/egg/ethereum/tools
  252. copying build/lib/ethereum/tools/tester.py -> build/bdist.linux-x86_64/egg/ethereum/tools
  253. copying build/lib/ethereum/tools/new_statetest_utils.py -> build/bdist.linux-x86_64/egg/ethereum/tools
  254. copying build/lib/ethereum/tools/testutils.py -> build/bdist.linux-x86_64/egg/ethereum/tools
  255. copying build/lib/ethereum/utils.py -> build/bdist.linux-x86_64/egg/ethereum
  256. copying build/lib/ethereum/state.py -> build/bdist.linux-x86_64/egg/ethereum
  257. copying build/lib/ethereum/genesis_helpers.py -> build/bdist.linux-x86_64/egg/ethereum
  258. copying build/lib/ethereum/block.py -> build/bdist.linux-x86_64/egg/ethereum
  259. copying build/lib/ethereum/snapshot.py -> build/bdist.linux-x86_64/egg/ethereum
  260. copying build/lib/ethereum/exceptions.py -> build/bdist.linux-x86_64/egg/ethereum
  261. copying build/lib/ethereum/vm.py -> build/bdist.linux-x86_64/egg/ethereum
  262. creating build/bdist.linux-x86_64/egg/tools
  263. copying build/lib/tools/keystorer.py -> build/bdist.linux-x86_64/egg/tools
  264. copying build/lib/tools/__init__.py -> build/bdist.linux-x86_64/egg/tools
  265. copying build/lib/tools/mk_ecpairing_tests.py -> build/bdist.linux-x86_64/egg/tools
  266. copying build/lib/tools/random_vm_test_generator.py -> build/bdist.linux-x86_64/egg/tools
  267. copying build/lib/tools/mk_modexp_tests.py -> build/bdist.linux-x86_64/egg/tools
  268. copying build/lib/tools/fixture_to_example.py -> build/bdist.linux-x86_64/egg/tools
  269. copying build/lib/tools/mk_ecadd_tests.py -> build/bdist.linux-x86_64/egg/tools
  270. copying build/lib/tools/evm.py -> build/bdist.linux-x86_64/egg/tools
  271. copying build/lib/tools/vm_test_generator.py -> build/bdist.linux-x86_64/egg/tools
  272. copying build/lib/tools/mk_ecmul_tests.py -> build/bdist.linux-x86_64/egg/tools
  273. byte-compiling build/bdist.linux-x86_64/egg/ethereum/new_state.py to new_state.cpython-35.pyc
  274. byte-compiling build/bdist.linux-x86_64/egg/ethereum/db.py to db.cpython-35.pyc
  275. byte-compiling build/bdist.linux-x86_64/egg/ethereum/abi.py to abi.cpython-35.pyc
  276. byte-compiling build/bdist.linux-x86_64/egg/ethereum/specials.py to specials.cpython-35.pyc
  277. byte-compiling build/bdist.linux-x86_64/egg/ethereum/meta.py to meta.cpython-35.pyc
  278. byte-compiling build/bdist.linux-x86_64/egg/ethereum/transaction_queue.py to transaction_queue.cpython-35.pyc
  279. byte-compiling build/bdist.linux-x86_64/egg/ethereum/child_dao_list.py to child_dao_list.cpython-35.pyc
  280. byte-compiling build/bdist.linux-x86_64/egg/ethereum/__init__.py to __init__.cpython-35.pyc
  281. byte-compiling build/bdist.linux-x86_64/egg/ethereum/common.py to common.cpython-35.pyc
  282. byte-compiling build/bdist.linux-x86_64/egg/ethereum/experimental/__init__.py to __init__.cpython-35.pyc
  283. byte-compiling build/bdist.linux-x86_64/egg/ethereum/experimental/refcount_db.py to refcount_db.cpython-35.pyc
  284. byte-compiling build/bdist.linux-x86_64/egg/ethereum/experimental/pruning_trie.py to pruning_trie.cpython-35.pyc
  285. byte-compiling build/bdist.linux-x86_64/egg/ethereum/experimental/fastvm.py to fastvm.cpython-35.pyc
  286. byte-compiling build/bdist.linux-x86_64/egg/ethereum/experimental/spv.py to spv.cpython-35.pyc
  287. byte-compiling build/bdist.linux-x86_64/egg/ethereum/pow/__init__.py to __init__.cpython-35.pyc
  288. byte-compiling build/bdist.linux-x86_64/egg/ethereum/pow/ethash.py to ethash.cpython-35.pyc
  289. byte-compiling build/bdist.linux-x86_64/egg/ethereum/pow/ethash_utils.py to ethash_utils.cpython-35.pyc
  290. byte-compiling build/bdist.linux-x86_64/egg/ethereum/pow/ethpow.py to ethpow.cpython-35.pyc
  291. byte-compiling build/bdist.linux-x86_64/egg/ethereum/pow/consensus.py to consensus.cpython-35.pyc
  292. byte-compiling build/bdist.linux-x86_64/egg/ethereum/pow/chain.py to chain.cpython-35.pyc
  293. byte-compiling build/bdist.linux-x86_64/egg/ethereum/trie.py to trie.cpython-35.pyc
  294. byte-compiling build/bdist.linux-x86_64/egg/ethereum/hybrid_casper/casper_utils.py to casper_utils.cpython-35.pyc
  295. byte-compiling build/bdist.linux-x86_64/egg/ethereum/hybrid_casper/__init__.py to __init__.cpython-35.pyc
  296. byte-compiling build/bdist.linux-x86_64/egg/ethereum/hybrid_casper/validator.py to validator.cpython-35.pyc
  297. byte-compiling build/bdist.linux-x86_64/egg/ethereum/hybrid_casper/consensus.py to consensus.cpython-35.pyc
  298. byte-compiling build/bdist.linux-x86_64/egg/ethereum/hybrid_casper/chain.py to chain.cpython-35.pyc
  299. byte-compiling build/bdist.linux-x86_64/egg/ethereum/hybrid_casper/casper_initiating_transactions.py to casper_initiating_transactions.cpython-35.pyc
  300. byte-compiling build/bdist.linux-x86_64/egg/ethereum/messages.py to messages.cpython-35.pyc
  301. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_opcodes.py to test_opcodes.cpython-35.pyc
  302. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_compress.py to test_compress.cpython-35.pyc
  303. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_genesis.py to test_genesis.cpython-35.pyc
  304. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_blocks.py to test_blocks.cpython-35.pyc
  305. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/__init__.py to __init__.cpython-35.pyc
  306. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_db.py to test_db.cpython-35.pyc
  307. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_state.py to test_state.cpython-35.pyc
  308. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_tester.py to test_tester.cpython-35.pyc
  309. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_trie_next_prev.py to test_trie_next_prev.cpython-35.pyc
  310. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_abi.py to test_abi.cpython-35.pyc
  311. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_transactions.py to test_transactions.cpython-35.pyc
  312. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_contracts.py to test_contracts.cpython-35.pyc
  313. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_trie.py to test_trie.cpython-35.pyc
  314. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_chain.py to test_chain.cpython-35.pyc
  315. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/utils.py to utils.cpython-35.pyc
  316. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_bloom.py to test_bloom.cpython-35.pyc
  317. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_keys.py to test_keys.cpython-35.pyc
  318. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_difficulty.py to test_difficulty.cpython-35.pyc
  319. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tests/test_serialization.py to test_serialization.cpython-35.pyc
  320. byte-compiling build/bdist.linux-x86_64/egg/ethereum/consensus_strategy.py to consensus_strategy.cpython-35.pyc
  321. byte-compiling build/bdist.linux-x86_64/egg/ethereum/transactions.py to transactions.cpython-35.pyc
  322. byte-compiling build/bdist.linux-x86_64/egg/ethereum/config.py to config.cpython-35.pyc
  323. byte-compiling build/bdist.linux-x86_64/egg/ethereum/slogging.py to slogging.cpython-35.pyc
  324. byte-compiling build/bdist.linux-x86_64/egg/ethereum/bloom.py to bloom.cpython-35.pyc
  325. byte-compiling build/bdist.linux-x86_64/egg/ethereum/fast_rlp.py to fast_rlp.cpython-35.pyc
  326. byte-compiling build/bdist.linux-x86_64/egg/ethereum/opcodes.py to opcodes.cpython-35.pyc
  327. byte-compiling build/bdist.linux-x86_64/egg/ethereum/securetrie.py to securetrie.cpython-35.pyc
  328. byte-compiling build/bdist.linux-x86_64/egg/ethereum/fastvm.py to fastvm.cpython-35.pyc
  329. byte-compiling build/bdist.linux-x86_64/egg/ethereum/compress.py to compress.cpython-35.pyc
  330. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tools/_solidity.py to _solidity.cpython-35.pyc
  331. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tools/__init__.py to __init__.cpython-35.pyc
  332. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tools/keys.py to keys.cpython-35.pyc
  333. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tools/testing_lang.py to testing_lang.cpython-35.pyc
  334. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tools/tester.py to tester.cpython-35.pyc
  335. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tools/new_statetest_utils.py to new_statetest_utils.cpython-35.pyc
  336. byte-compiling build/bdist.linux-x86_64/egg/ethereum/tools/testutils.py to testutils.cpython-35.pyc
  337. byte-compiling build/bdist.linux-x86_64/egg/ethereum/utils.py to utils.cpython-35.pyc
  338. byte-compiling build/bdist.linux-x86_64/egg/ethereum/state.py to state.cpython-35.pyc
  339. byte-compiling build/bdist.linux-x86_64/egg/ethereum/genesis_helpers.py to genesis_helpers.cpython-35.pyc
  340. byte-compiling build/bdist.linux-x86_64/egg/ethereum/block.py to block.cpython-35.pyc
  341. byte-compiling build/bdist.linux-x86_64/egg/ethereum/snapshot.py to snapshot.cpython-35.pyc
  342. byte-compiling build/bdist.linux-x86_64/egg/ethereum/exceptions.py to exceptions.cpython-35.pyc
  343. byte-compiling build/bdist.linux-x86_64/egg/ethereum/vm.py to vm.cpython-35.pyc
  344. byte-compiling build/bdist.linux-x86_64/egg/tools/keystorer.py to keystorer.cpython-35.pyc
  345. byte-compiling build/bdist.linux-x86_64/egg/tools/__init__.py to __init__.cpython-35.pyc
  346. byte-compiling build/bdist.linux-x86_64/egg/tools/mk_ecpairing_tests.py to mk_ecpairing_tests.cpython-35.pyc
  347. byte-compiling build/bdist.linux-x86_64/egg/tools/random_vm_test_generator.py to random_vm_test_generator.cpython-35.pyc
  348. byte-compiling build/bdist.linux-x86_64/egg/tools/mk_modexp_tests.py to mk_modexp_tests.cpython-35.pyc
  349. byte-compiling build/bdist.linux-x86_64/egg/tools/fixture_to_example.py to fixture_to_example.cpython-35.pyc
  350. byte-compiling build/bdist.linux-x86_64/egg/tools/mk_ecadd_tests.py to mk_ecadd_tests.cpython-35.pyc
  351. byte-compiling build/bdist.linux-x86_64/egg/tools/evm.py to evm.cpython-35.pyc
  352. byte-compiling build/bdist.linux-x86_64/egg/tools/vm_test_generator.py to vm_test_generator.cpython-35.pyc
  353. byte-compiling build/bdist.linux-x86_64/egg/tools/mk_ecmul_tests.py to mk_ecmul_tests.cpython-35.pyc
  354. creating build/bdist.linux-x86_64/egg/EGG-INFO
  355. copying ethereum.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
  356. copying ethereum.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
  357. copying ethereum.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
  358. copying ethereum.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
  359. copying ethereum.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
  360. zip_safe flag not set; analyzing archive contents...
  361. ethereum.hybrid_casper.__pycache__.casper_utils.cpython-35: module references __file__
  362. ethereum.tests.__pycache__.test_tester.cpython-35: module references __file__
  363. ethereum.tests.__pycache__.test_trie.cpython-35: module references __file__
  364. ethereum.tools.__pycache__.testutils.cpython-35: module references __file__
  365. ethereum.tools.__pycache__.new_statetest_utils.cpython-35: module references __file__
  366. ethereum.__pycache__.__init__.cpython-35: module references __file__
  367. creating dist
  368. creating 'dist/ethereum-2.1.5-py3.5.egg' and adding 'build/bdist.linux-x86_64/egg' to it
  369. removing 'build/bdist.linux-x86_64/egg' (and everything under it)
  370. Processing ethereum-2.1.5-py3.5.egg
  371. creating /usr/local/lib/python3.5/dist-packages/ethereum-2.1.5-py3.5.egg
  372. Extracting ethereum-2.1.5-py3.5.egg to /usr/local/lib/python3.5/dist-packages
  373. Adding ethereum 2.1.5 to easy-install.pth file
  374.  
  375. Installed /usr/local/lib/python3.5/dist-packages/ethereum-2.1.5-py3.5.egg
  376. Processing dependencies for ethereum==2.1.5
  377. Searching for future
  378. Reading https://pypi.python.org/simple/future/
  379. Best match: future 0.16.0
  380. Downloading https://pypi.python.org/packages/00/2b/8d082ddfed935f3608cc61140df6dcbf0edea1bc3ab52fb6c29ae3e81e85/future-0.16.0.tar.gz#md5=3e8e88a2bda48d54b1da7634d04760d7
  381. Processing future-0.16.0.tar.gz
  382. Writing /tmp/easy_install-n06ypeyk/future-0.16.0/setup.cfg
  383. Running future-0.16.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-n06ypeyk/future-0.16.0/egg-dist-tmp-n1fncnlz
  384. warning: no files found matching '*.au' under directory 'tests'
  385. warning: no files found matching '*.gif' under directory 'tests'
  386. warning: no files found matching '*.txt' under directory 'tests'
  387. zip_safe flag not set; analyzing archive contents...
  388. future.utils.__pycache__.__init__.cpython-35: module MAY be using inspect.stack
  389. future.backports.test.__pycache__.ssl_servers.cpython-35: module references __file__
  390. future.backports.test.__pycache__.support.cpython-35: module references __file__
  391. future.standard_library.__pycache__.__init__.cpython-35: module references __file__
  392. future.standard_library.__pycache__.__init__.cpython-35: module references __path__
  393. past.builtins.__pycache__.misc.cpython-35: module MAY be using inspect.stack
  394. past.translation.__pycache__.__init__.cpython-35: module references __file__
  395. past.translation.__pycache__.__init__.cpython-35: module references __path__
  396. creating /usr/local/lib/python3.5/dist-packages/future-0.16.0-py3.5.egg
  397. Extracting future-0.16.0-py3.5.egg to /usr/local/lib/python3.5/dist-packages
  398. Adding future 0.16.0 to easy-install.pth file
  399. Installing futurize script to /usr/local/bin
  400. Installing pasteurize script to /usr/local/bin
  401.  
  402. Installed /usr/local/lib/python3.5/dist-packages/future-0.16.0-py3.5.egg
  403. Searching for coincurve>=5.0.1
  404. Reading https://pypi.python.org/simple/coincurve/
  405. Best match: coincurve 6.0.0
  406. Downloading https://pypi.python.org/packages/1e/b8/d5dbe751304372debb356085717af0f1a274da37e7f51642e118a6497208/coincurve-6.0.0.tar.gz#md5=c8f1c2bf3879aa774424189c9d3df3e7
  407. Processing coincurve-6.0.0.tar.gz
  408. Writing /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/setup.cfg
  409. Running coincurve-6.0.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/egg-dist-tmp-a_ydukbq
  410. /usr/lib/python3.5/distutils/dist.py:261: UserWarning: Unknown distribution option: 'python_requires'
  411. warnings.warn(msg)
  412. zip_safe flag not set; analyzing archive contents...
  413.  
  414. Installed /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/.eggs/pytest_runner-3.0-py3.5.egg
  415. Searching for cffi>=1.3.0
  416. Reading https://pypi.python.org/simple/cffi/
  417. Best match: cffi 1.11.2
  418. Downloading https://pypi.python.org/packages/c9/70/89b68b6600d479034276fed316e14b9107d50a62f5627da37fafe083fde3/cffi-1.11.2.tar.gz#md5=a731487324b501c8295221b629d3f5f3
  419. Processing cffi-1.11.2.tar.gz
  420. Writing /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/temp/easy_install-bm9iun2n/cffi-1.11.2/setup.cfg
  421. Running cffi-1.11.2/setup.py -q bdist_egg --dist-dir /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/temp/easy_install-bm9iun2n/cffi-1.11.2/egg-dist-tmp-a_db8hed
  422. creating /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/.eggs/cffi-1.11.2-py3.5-linux-x86_64.egg
  423. Extracting cffi-1.11.2-py3.5-linux-x86_64.egg to /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/.eggs
  424.  
  425. Installed /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/.eggs/cffi-1.11.2-py3.5-linux-x86_64.egg
  426. Searching for pycparser
  427. Reading https://pypi.python.org/simple/pycparser/
  428. Best match: pycparser 2.18
  429. Downloading https://pypi.python.org/packages/8c/2d/aad7f16146f4197a11f8e91fb81df177adcc2073d36a17b1491fd09df6ed/pycparser-2.18.tar.gz#md5=72370da54358202a60130e223d488136
  430. Processing pycparser-2.18.tar.gz
  431. Writing /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/temp/easy_install-nozwws0p/pycparser-2.18/setup.cfg
  432. Running pycparser-2.18/setup.py -q bdist_egg --dist-dir /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/temp/easy_install-nozwws0p/pycparser-2.18/egg-dist-tmp-b3ktmk03
  433. warning: no previously-included files matching 'yacctab.*' found under directory 'tests'
  434. warning: no previously-included files matching 'lextab.*' found under directory 'tests'
  435. warning: no previously-included files matching 'yacctab.*' found under directory 'examples'
  436. warning: no previously-included files matching 'lextab.*' found under directory 'examples'
  437. zip_safe flag not set; analyzing archive contents...
  438. pycparser.ply.__pycache__.lex.cpython-35: module references __file__
  439. pycparser.ply.__pycache__.lex.cpython-35: module MAY be using inspect.getsourcefile
  440. pycparser.ply.__pycache__.yacc.cpython-35: module references __file__
  441. pycparser.ply.__pycache__.yacc.cpython-35: module MAY be using inspect.getsourcefile
  442. pycparser.ply.__pycache__.yacc.cpython-35: module MAY be using inspect.stack
  443. pycparser.ply.__pycache__.ygen.cpython-35: module references __file__
  444. creating /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/.eggs/pycparser-2.18-py3.5.egg
  445. Extracting pycparser-2.18-py3.5.egg to /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/.eggs
  446.  
  447. Installed /tmp/easy_install-tfn9iq7r/coincurve-6.0.0/.eggs/pycparser-2.18-py3.5.egg
  448. build/temp.linux-x86_64-3.5/_libsecp256k1.c:483:28: fatal error: secp256k1_ecdh.h: No such file or directory
  449. compilation terminated.
  450. error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
  451. ancientevil@ancientevil-GT70:~/pyethereum$ python setup.py install
  452. Traceback (most recent call last):
  453. File "setup.py", line 1, in <module>
  454. from setuptools import setup, find_packages
  455. ImportError: No module named setuptools
  456. ancientevil@ancientevil-GT70:~/pyethereum$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement