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 thePathvariable.Open a new terminal and run:
ipfs --versionIf it returns the version number, the installation was successful.
Initialize IPFS:
ipfs initStart 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.gzExtract and install IPFS:
tar -xvzf go-ipfs_v0.40.0_linux-amd64.tar.gz cd go-ipfs sudo bash install.shVerify the installation:
ipfs --versionInitialize IPFS:
ipfs initStart the IPFS daemon:
ipfs daemon
Installing IPFS on macOSInstall IPFS using Homebrew:
brew install ipfsInitialize IPFS:
ipfs initStart the IPFS daemon:
ipfs daemon
Last updated