Skip to content

Commit

Permalink
updated install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffWScott committed May 27, 2022
1 parent e6b3c4c commit 3a67346
Showing 1 changed file with 31 additions and 4 deletions.
35 changes: 31 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,43 @@
A script for estimating stamps cost and setup a socket sever to communicate with [Lamden Block Service](https://github.com/Lamden/lamden_block_service).

### Prepare
**These are install steps for UBUNTU 18.04**

- python 3.6+
- poetry installed. `poetry` is a package manager tool. More detail click [here](https://python-poetry.org/docs)
1. python 3.6.x (should come with UBUNTU 18.04)
2. poetry installed. `poetry` is a package manager tool. More detail click [here](https://python-poetry.org/docs)
```
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
source $HOME/.poetry/env
```

### Install Dependancies
1. pip3
```
sudo apt-get update
sudo apt-get -y install python3-pip
```

2. python setuptools
```
pip3 install setuptools
```

2. lamden contracting
```
cd ~
git clone https://github.com/Lamden/contracting.git
cd contracting
git checkout blockservice-driver
python3 ./setup.py develop
```

3.

### Install
```
cd ~
git clone https://github.com/Lamden/stamp_estimation_script.git
cd stamp_estimation_script/
poetry install # Installing dependences.
```
Expand Down

0 comments on commit 3a67346

Please sign in to comment.