π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_64ARM-compatible:
arm64
3. Install Docker π³
Download from the official website: Docker

Run the installer to complete setup
Verify installation in Terminal:
docker --versionExpected: 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