πŸͺŸWindows Setup Guide

1. Launch the system terminal πŸ‘¨β€πŸ’»

  1. Open Start Menu and search

Windows search start
  1. Type cmd

Type cmd
  1. Click to launch the terminal

Open terminal

Method B β€” Keyboard shortcut ⌨️

  1. Press Win + R

Win+R
  1. Enter cmd

Enter cmd
  1. Press Enter to launch

Launch via Enter

2. Determine the CPU architecture 🧭

Run in terminal:

wmic computersystem get systemtype
wmic output

Interpretation:

  • AMD-compatible: x86-based PC, x64-based PC

  • ARM-compatible: ARM-based PC


3. Install Docker 🐳

  1. Download from the official website: Docker

Docker website
  1. Run the installer to complete setup

  2. Verify installation in terminal:

    docker --version

    Expected: prints a version string

    Docker version
  3. Update wsl

    Update the latest version of wsl

    wsl --update
    image-windows-wsl

4. Start Docker Service πŸ”§

Step A β€” Press Win + R keys simultaneously πŸ› οΈ

Press the Windows key and R key at the same time to open the Run dialog.

image-windows-4

Step B β€” Enter services.msc πŸ“

Type:

services.msc
Services MSC

Step C β€” Find Docker Service πŸ”

Look for the service named: Docker Desktop Service

Docker Service

Step D β€” Right-click and Start ▢️

Right-click on the service and select Start

Start Service

Step E β€” Verify Service Status βœ…

Ensure the Docker service shows as Running

Service Running

Step F β€” Open Docker Desktop Application πŸš€

Launch the Docker Desktop application - it should show Ready

Docker Ready

5. Sign in to the dashboard and create a node πŸ“Š

  1. Register and sign in: neuralpro.net

  2. Open the dashboard and create a node

Dashboard create

6. Create and start the node following the official guide πŸš€

Step A β€” Choose machine architecture 🧩

Select the correct architecture when creating the node.

Choose arch

Step B β€” Choose CPU usage percentage πŸ“ˆ

Set the percentage of CPU computing power to allocate.

Choose CPU percent

Step C β€” Pull the official image πŸ“₯

Method 1 β€” Copy your personalized command:

  1. Click the copy button

Copy pull cmd
  1. Paste into terminal and run

Paste pull cmd

Method 2 β€” Manually pull in terminal:

docker pull neuralpro/neuralpro-amd:v1
Pull image result

Step D β€” Start the container ▢️

Method 1 β€” Copy your personalized start command:

  1. Click the copy button

Copy run cmd
  1. Paste into terminal and run

Paste run cmd

Method 2 β€” Start manually with parameters:

Parameters to prepare:

  • REGISTRATION_CODE: retrieve from the official dashboard

  • DEVICE_ID: retrieve from the official dashboard

  • CPU_THRESHOLD: choose your preferred percentage

Run:

docker run -d --name neuralpro-integrated \
  -e BACKGROUND_MODE=true \
  -e REGISTRATION_CODE="" \
  -e DEVICE_ID="" \
  -e CPU_THRESHOLD="" \
  neuralpro/neuralpro-amd:v1
Run container

Step E β€” Wait for the node to connect ⏳

Waiting

Step F β€” Connection completed βœ…

Connected

Last updated