🍎macOS Setup Guide
1. Launch the system terminal 👨💻
Search launch 🔎
Press
Command + Space

Type
Terminal

Press Enter to open Terminal

2. Determine the CPU architecture 🧭
Run in Terminal:
uname -m

Interpretation:
AMD-compatible:
x86_64
ARM-compatible:
arm64
3. Install Docker 🐳
Download from the official website: Docker

Run the installer to complete setup
Verify installation in Terminal:
docker --version
Expected: prints a version string

4. Sign in to the dashboard and create a node 📊
Register and sign in: neuralpro.net
Open the dashboard and create a node

5. Create and start the node following the official guide 🚀
Step A — Choose machine architecture 🧩
Select the correct architecture when creating the node.

Step B — Choose CPU usage percentage 📈
Set the percentage of CPU computing power to allocate.

Step C — Pull the official image 📥
Method 1 — Copy your personalized command:
Click the copy button

Paste into Terminal and run

Method 2 — Manually pull in Terminal:
docker pull neuralpro/neuralpro-arm:v1

Step D — Start the container ▶️
Method 1 — Copy your personalized start command:
Click the copy button

Paste into Terminal and run

Method 2 — Start manually with parameters:
Parameters to prepare:
REGISTRATION_CODE
: retrieve from the official dashboardDEVICE_ID
: retrieve from the official dashboardCPU_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

Step E — Wait for the node to connect ⏳

Step F — Connection completed ✅

Last updated