Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 687 Bytes

install_indy-vdr.md

File metadata and controls

39 lines (32 loc) · 687 Bytes

Instructions for local installation of indy-vdr

  • Install Rust
$ sudo apt install build-essential rustc libssl-dev pkg-config cmake
  • Clone the indy-vdr repository
$ git clone https://github.com/hyperledger/indy-vdr
  • Build
$ cd indy-vdr
$ cargo build --lib --release
  • Copy indy-vdr library:
$ cp target/release/libindy*.so  /usr/local/lib
  • Do ldconfig or export local libraries to library path
$ sudo ldconfig 
$ export LD_LIBRARY_PATH=/usr/local/lib
  • Install the python wrapper:
$  cd Wrappers/Python
$  pip3 install .
  • Install the python dependencies for fetch_status_prometheus.py:
$ pip3 install base58 pynacl