I want to install indy-sdk in ubuntu 20.04, but I can't find any documentation about it. How can I install it?
-
1please provide more info about the error – Polem Feb 01 '21 at 09:21
3 Answers
Just follow the installation process here : https://github.com/hyperledger/indy-sdk#ubuntu-based-distributions-ubuntu-1604-and-1804

- 4,011
- 5
- 23
- 36
-
I tried this but still not working. It is saying file not found. – Shubham Gupta Jan 29 '21 at 05:58
Try This, I have used the bionic version on ubuntu 20.04 and its worked.
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
sudo add-apt-repository “deb https://repo.sovrin.org/sdk/deb bionic master”
sudo apt-get update
sudo apt-get install -y libindy
There will be a file not found error if we write the repository incorrectly in apt-get. You can get the command on https://github.com/hyperledger/indy-sdk#ubuntu-based-distributions-ubuntu-1604-and-1804.
if you write wrong in this section, the file not found error will appear
sudo add-apt-repository "deb https://repo.sovrin.org/sdk/deb (xenial|bionic) {release channel}"
So, dont use the () and {}, as follows :
sudo add-apt-repository “deb https://repo.sovrin.org/sdk/deb bionic master”
Check if stable nodejs is installed. Try with node version greater then 10.
Follow below commands to install indy-sdk on ubuntu 20.04
apt-get update -y && apt-get install -y \
gnupg \
ca-certificates
apt-key adv --keyserver keyserver.ubuntu.com:80 --recv-keys CE7709D068DB5E88
echo "deb https://repo.sovrin.org/sdk/deb bionic stable" >> /etc/apt/sources.list
apt-get update -y && apt-get install -y \
libindy
Then you can install via npm:
npm install --save indy-sdk

- 85
- 1
- 11