This is the syntax used to run Kalliope from command line
kalliope command --option <argument>For example, to start Kalliope we simply use
kalliope startNote: Do not use the CLI as root user or with sudo. Kalliope must run with standard user privileges.
Start Kalliope main program
Example of use
kalliope startTo kill Kalliope, you can press "Ctrl-C" on your keyboard.
Install a community module. You must set an install type option. Currently the only available option is --git-url.
Syntax
kalliope install --git-url <url>Example of use
kalliope install --git-url https://github.com/kalliope-project/kalliope_neuron_wikipedia.gitCommands can be completed by the following options:
Display the current isntalled version of Kalliope.
Example of use
kalliope --versionkalliope -vRun a specific synapse from the brain file.
Example of use
kalliope start --run-synapse "say-hello"Run a specific order from command line.
Example of use
kalliope start --run-order "hello"Replace the default brain file from the root of the project folder by a custom one.
Important note: The path must be absolute. The absolute path contains the root directory and all other subdirectories in which a file or folder is contained.
Example of use
kalliope start --brain-file /home/me/my_other_brain.ymlYou can combine the options together like, for example:
kalliope start --run-synapse "say-hello" --brain-file /home/me/my_other_brain.ymlStarts Kalliope in a deaf state, the trigger is paused.
Example of use
kalliope start --deafYou can combine the options together like, for example:
kalliope start --deaf --brain-file /home/me/my_other_brain.ymlShow debug output in the console
Example of use
kalliope start --debugUsed by the install argument to specify the URL of a git repository of the module to install.