Cogni Docs
  • Welcome
  • Getting Started
    • Quickstart
    • Uploading Files
  • Basics
    • About Cogni
    • Editor
    • Markdown
    • Images & media
    • Interactive blocks
    • Integrations
    • Installation Guide
  • Use Cases
    • Uploading AI Models
    • Retrieving Models
    • Pinning a Dataset
    • Sharing AI Resources
  • Group 1
    • FAQs
Powered by GitBook
On this page
  1. Basics

Installation Guide

PreviousIntegrationsNextUploading AI Models

Last updated 4 months ago

  • Installing IPFS on Windows

    1. Download IPFS CLI:

      • Visit the 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).

    2. Add IPFS to PATH:

      • Open Environment Variables and add the extracted IPFS folder (containing ipfs.exe) to the Path variable.

      • Open a new terminal and run:

        ipfs --version

        If it returns the version number, the installation was successful.

    3. Initialize IPFS:

      ipfs init
    4. Start the IPFS Daemon:

      ipfs daemon

    Installing IPFS on Linux

    1. Download the IPFS binary:

      wget https://dist.ipfs.io/go-ipfs/v0.40.0/go-ipfs_v0.40.0_linux-amd64.tar.gz
    2. Extract and install IPFS:

      tar -xvzf go-ipfs_v0.40.0_linux-amd64.tar.gz
      cd go-ipfs
      sudo bash install.sh
    3. Verify the installation:

      ipfs --version
    4. Initialize IPFS:

      ipfs init
    5. Start the IPFS daemon:

      ipfs daemon

    Installing IPFS on macOS

    1. Install IPFS using Homebrew:

      brew install ipfs
    2. Initialize IPFS:

      ipfs init
    3. Start the IPFS daemon:

      ipfs daemon

Go-IPFS Releases