├── feguide.sh └── README.md /feguide.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **🔹 You can access Gensyn Node Step-by-Step YouTube Guide from here: https://youtu.be/cIsVKOku5Ow** 2 | 3 | **🚀Credit:** Gensyn Node Guide is created by ZUN, I have adjusted Acc to own style so that my community can easily join the Gensyn testnet. 4 | 5 | **❤️❤️Follow our TG for More Early Alpha: https://telegram.me/feature_earning** 6 | 7 | ## Install Dependencies 8 | **. Update System Packages** 9 | ```bash 10 | sudo apt-get update && sudo apt-get upgrade -y 11 | ``` 12 | **. Install Node.js and npm** 13 | ```console 14 | curl -sSL https://raw.githubusercontent.com/zunxbt/installation/main/node.sh | bash 15 | ``` 16 | **.Install other dependencies using the command below** 17 | ```console 18 | 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 yarn 19 | ``` 20 | **. Clone this repository** 21 | 22 | ```console 23 | rm -rf rl-swarm && git clone https://github.com/zunxbt/rl-swarm.git && cd rl-swarm 24 | ``` 25 | **. Create a screen session** 26 | 27 | ```console 28 | screen -S gensyn 29 | ``` 30 | **. Run the swarm** 31 | 32 | ```console 33 | python3 -m venv .venv && source .venv/bin/activate && ./run_rl_swarm.sh 34 | ``` 35 | --------------------------------------------------------------------------------