Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DASH] Dash | First Anonymous Coin | Inventor of X11, DGW, Darksend and InstantX
by
moocowmoo
on 28/01/2016, 18:55:28 UTC


Ello Moocowmoo

Long time lurker - 1st time caller

I'm a bit of a linux noob - uh
How do I download and use this nice little script?
Does it have to live in .dash? or it's own little DIR?

details would be great - trying to learn but just SO much to take in lol

Hi BusterNutBag,

You'll need:

dash-cli
git
python
an environment variable setting (the export below)

The first three are most likely already on your box.
If git isn't you can install it by doing:
Code:
sudo apt-get install git

Here's a recipe that should work for you.

You'll need to know the folder where your dash-cli is located.
If your dash-cli is in ~/.dash (where I keep mine), do:
Code:
export PATH=~/.dash:$PATH
(replace ~/.dash with your dash-cli containing directory)

you can test above worked by doing
Code:
dash-cli
and it'll give you output

to make it permanent, add the export above to the end of your ~/.bashrc file.

Then install and run the software

Code:
git clone https://github.com/moocowmoo/dash-budget_state.git
cd dash-budget_state
python dash-budget_state.py

HTH