Installation
Setting up AIGENT is straightforward, whether you’re an experienced developer or just starting with blockchain.
Step 1: Prerequisites
Install Rust.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup update
Install build tools:
Linux:
sudo apt install build-essential
Windows: Install Build Tools for Visual Studio.
MacOS: Install Xcode command-line tools.
Step 2: Clone the Repository
bashCopy codegit clone https://github.com/your-org/aigent-blockchain.git
cd aigent-blockchain
Step 3: Build and Run
cargo build --release
./target/release/aigent-node --dev
Last updated