We will install this project in CLI . First of all, we can go to website and get the publıc and private keys.Please click key button image and to copy private key.Don't fotrget to save the key!.
Go to the Website: https://node.hyper.space/
apt update && apt upgrade -y
apt install -y curl wget
curl https://download.hyper.space/api/install | bash
source ~/.bashrc
aios-cli version
nano /etc/systemd/system/aios.service
Add the configuration file and paste the following section into this field. Exit the file by pressing ctrl+x+y
[Unit]
Description=aiOS CLI Service
After=network.target
[Service]
ExecStart=/root/.aios/aios-cli start
Restart=always
RestartSec=5
User=root
WorkingDirectory=/root
Environment=PATH=/usr/local/bin:/usr/bin:/bin:/root/.aios
[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload
sudo systemctl start aios.service
sudo systemctl enable aios.service
sudo systemctl status aios.service
echo "YOUR PRIVATE KEY" > my-key.base58
/root/.aios/aios-cli hive import-keys ./my-key.base58
aios-cli hive login
aios-cli hive whoami
- You will see the your public and private key
-If you select tier 3 you will receive 2x points.(minimum CPU should be 6 or 8)
aios-cli hive select-tier 5
aios-cli models add hf:TheBloke/phi-2-GGUF:phi-2.Q4_K_M.gguf
aios-cli hive connect
aios-cli hive points
journalctl -u aios.service -xe
aios-cli hive disconnect
aios-cli hive connect
#Delete service
systemctl stop aios.service
systemctl disable aios.service
rm /etc/systemd/system/aios.service
systemctl daemon-reload
#Delete Binary files
rm /usr/local/bin/aios-cli