Gensyn Nodes Guide
This guide is the most lazy docs i made from previous Guide

Install Node.js and npm if not installed already
curl -sSL https://raw.githubusercontent.com/zunxbt/installation/main/node.sh | bashInstall other dependencies
sudo apt update && sudo apt install -y python3 python3-venv python3-pip curl screen git yarn && curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list && sudo apt update && sudo apt install -y yarnClone this repository
rm -rf rl-swarm && git clone https://github.com/zunxbt/rl-swarm.git && cd rl-swarmCreate a
screensession
screen -S gensynRun the swarm
python3 -m venv .venv && source .venv/bin/activate && ./run_rl_swarm.shIt will show like this
You need to visit the URL which you will find on your terminal there and then, log in using your email. After logging in.
It will ask you this question :
Would you like to push models you train in the RL swarm to the Hugging Face Hub? [y/N]; You should writeNthereYou will see something like this; it indicates that everything is working fine. You can now detach from this screen session.
Detach from
screen session
Use
Ctrl + Aand then pressDto detach from this screen session.
Last updated