Created
October 6, 2020 09:54
-
-
Save realChainLife/d27fa84108988f861faa8684cdde9b22 to your computer and use it in GitHub Desktop.
Installing IPFS via ipfs-update on Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# download latest version of ipfs-update from https://dist.ipfs.io/#ipfs-update | |
wget https://dist.ipfs.io/ipfs-update/vx.x.x/ipfs-update_vx.x.x_linux-amd64.tar.gz | |
# extract the zip: | |
tar -zxvf ipfs-update_vx.x.x_linux-amd64.tar.gz | |
# go into the folder: | |
cd ipfs-update/ | |
# run the install command: | |
sudo ./install.sh | |
# You should now be able to check it is working via: | |
ipfs-update help | |
# Intall latest go-ipfs | |
sudo ipfs-update install latest | |
# IPFS should now be installed! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bmm