Closed ashish6913 closed 1 year ago
Hi! It looks like it cannot find libindy. This is a native library required for hosting the demo.
Hopefully this guide can help you: https://aries.js.org/guides/getting-started/installation/nodejs
Hi @blu3beri, you are right and thanks for your response. I was missing the libindy library but the AFJ documentation for linux didn't work out for me. However, the following Dockerfile commands solved my issue.
`RUN apt-get update -y && apt-get install -y software-properties-common apt-transport-https curl build-essential
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CE7709D068DB5E88 RUN add-apt-repository "deb https://repo.sovrin.org/sdk/deb bionic stable"
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN apt-get update -y && apt-get install -y --allow-unauthenticated \ libindy \ nodejs`
Hi,
I am trying to run the demo locally, however yarn install keeps throwing following error:
Current setup:
Ubuntu 20.04 Node - 16.14.0 yarn - 1.22.19
Steps to reproduce:
Any help would be appreciated. Thanks! :)