Nexus
Guide
Hardware Specification ( Minimum )
- CPU: 2 vCPU
- RAM: 4 GB
- Storage: 500 MB
- Internet: 100 Mbps
Preparations
Register https://beta.nexus.xyz/, click Profile in bottom left corner, input email and send verification
Open your gmail and sign in using the link sent to your email
Once you signup, copy the Prover ID in bottom left corner near the profile icon
Step 1: Install Package
bash
sudo apt update && sudo apt upgrade
sudo apt install build-essential pkg-config libssl-dev git-allStep 2: Run Nexus Installer
bash
curl https://cli.nexus.xyz/ | shKnown Error Fix
HEAD is now at c40f98f hotfix: update error logging of the updater error (#72) sh: 55: cargo: not found
Manual Running
bash
wget https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-linux-x86_64.zipwarning: [email protected]: Failed to run protoc: No such file or directory (os error 2)
Install Protoc
Download Binary
bash
wget https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-linux-x86_64.zipExtract ZIP ( Must install Unzip first )
bash
sudo apt install unzip
unzip protoc-28.3-linux-x86_64.zip -d protoc-28.3Move File
bash
sudo mv protoc-28.3/bin/protoc /usr/local/bin/
sudo mv protoc-28.3/include/* /usr/local/include/Check Installation
bash
protoc --versionand then Rerun the Step 2