Installation Guide
- Installing IPFS on Windows
Download IPFS CLI:
Visit the Go-IPFS Releases page.
Download the latest version for Windows (
go-ipfs_vX.XX.X_windows-amd64.zip
).Extract the ZIP file to a directory (e.g.,
C:\ipfs
).
Add IPFS to PATH:
Open Environment Variables and add the extracted IPFS folder (containing
ipfs.exe
) to thePath
variable.Open a new terminal and run:
ipfs --version
If it returns the version number, the installation was successful.
Initialize IPFS:
ipfs init
Start the IPFS Daemon:
ipfs daemon
Installing IPFS on LinuxDownload the IPFS binary:
wget https://dist.ipfs.io/go-ipfs/v0.40.0/go-ipfs_v0.40.0_linux-amd64.tar.gz
Extract and install IPFS:
tar -xvzf go-ipfs_v0.40.0_linux-amd64.tar.gz cd go-ipfs sudo bash install.sh
Verify the installation:
ipfs --version
Initialize IPFS:
ipfs init
Start the IPFS daemon:
ipfs daemon
Installing IPFS on macOSInstall IPFS using Homebrew:
brew install ipfs
Initialize IPFS:
ipfs init
Start the IPFS daemon:
ipfs daemon
Last updated