🍎macOS Setup Guide

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

Search launch πŸ”Ž

  1. Press Command + Space

Spotlight
  1. Type Terminal

Type Terminal
  1. Press Enter to open Terminal

Open Terminal

2. Determine the CPU architecture 🧭

Run in Terminal:

uname -m
uname output

Interpretation:

  • AMD-compatible: x86_64

  • ARM-compatible: arm64


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

4. 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

5. 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-arm: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-arm:v1
Run container

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

Waiting

Step F β€” Connection completed βœ…

Connected

Last updated