Advertisement
Guest User

kitchen bear 52 how to compile ryo wallet for Ubuntu 17.04

a guest
Jan 24th, 2019
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. 1. Install wallet from GitHub from Ubuntu computer:
  2. build ryo-cli linux wallet:
  3. git clone https://github.com/ryo-currency/ryo-currency.git
  4. cd ryo-currency
  5. git fetch
  6. git checkout dev
  7. ---note 1:
  8. (correct reply on input: "Branch dev set up to track remote branch dev from origin.
  9. Switched to a new branch 'dev'")
  10. ---note 2: find /dev branch
  11. git checkout topic-build-fixes
  12. (recommended by author of wallet)
  13. make
  14.  
  15. 2. Additional libraries for correct installation. As an example -
  16. Ubuntu 17.04. This version is the old one and not supported anymore.
  17. To understand can you install your wallet correctly try to install a
  18. set of necessary libraries. Start with:
  19.  
  20. -- Boost or libboost-all-dev (1.58):
  21. sudo apt-get libboost-all-dev
  22.  
  23. -- If on your command you get response:
  24. "E: Invalid operation libboost-all-dev" etc,
  25. then try to change repository from which you are getting updates
  26. for your os. The following link is explaining how:
  27.  
  28. https://ubuntuforums.org/showthread.php?t=2382832
  29.  
  30. -- After succeed you can continue with:
  31.  
  32. -- Install readline lib:
  33. sudo apt-get install libreadline6 libreadline6-dev
  34.  
  35. -- Install zmq3 library:
  36. sudo apt install libzmq3-dev
  37.  
  38. -- Install sodium library:
  39. sudo apt install libsodium-dev
  40.  
  41. After installing missed libraries you can proceed with a "make"
  42. procedure.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement