Welcome to Hermes Agent Installation

Install Hermes Agent

To install the Hermes Agent, run the following command:

curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash
css /* styles.css */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; } header { background: #35424a; color: #ffffff; padding: 10px 0; text-align: center; } main { padding: 20px; } h2 { color: #35424a; } pre { background: #272c34; color: #ffffff; padding: 10px; border-radius: 5px; } button { background: #35424a; color: #ffffff; padding: 10px 15px; border: none; border-radius: 5px; cursor: pointer; } button:hover { background: #2a2e34; } .hidden { display: none; } footer { text-align: center; padding: 10px 0; background: #35424a; color: #ffffff; position: absolute; width: 100%; bottom: 0; } javascript // script.js document.getElementById('copy-btn').addEventListener('click', function() { const command = 'curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash'; navigator.clipboard.writeText(command) .then(() => { document.getElementById('feedback').classList.remove('hidden'); setTimeout(() => { document.getElementById('feedback').classList.add('hidden'); }, 2000); }) .catch(err => console.error('Error copying text: ', err)); });