Mycroft for Linux

Mycroft is available for Linux, and can be installed via several methods.

Currently, there are builds and/or instructions for installing Mycroft on:

Prerequisites

This section of documentation assumes the following:

  • That you already have Linux installed on your computer

  • That your computer is already connected to the internet

  • That you are comfortable issuing basic Linux commands from a terminal or shell prompt

  • That your device has a built-in microphone and speakers, or, you have successfully connected microphone and speakers to your device.

  • That your device already has git installed and working. If you don't already have git installed, here is a great set of instructions.

Getting Started

There are multiple ways to install Mycroft for Linux.

Installing via git clone

The simplest way to install Mycroft for Linux is to clone the mycroft-core repo to your system and run a shell script, which will install all dependencies, and Mycroft components.

The mycroft-core repo is at https://github.com/MycroftAI/mycroft-core.

The instructions below will install Mycroft in your HOME directory.

cd ~/
git clone https://github.com/MycroftAI/mycroft-core.git
cd mycroft-core
bash dev_setup.sh

The dev_setup.sh script identifies, installs and configures dependencies that Mycroft needs to run.

The script will also install and configure virtualenv. virtualenv is a tool to create isolated Python environments. It is a way to isolate an application - in this case Mycroft - from other applications. It helps to better manage both dependencies and security.

If you are running a Linux distribution other than Ubuntu, Debian, Arch or Fedora, you may need to manually install packages as instructed by dev_setup.sh.

NOTE: The default branch for this repository is 'dev', which should be considered a work-in-progress. If you want to clone a more stable version, switch over to the 'master' branch.

You can do this by choosing the master branch in GitHub instead of the default dev branch as shown below.

Running Mycroft for Linux

The Mycroft for Linux installation includes two scripts that you use to control Mycroft services.

start-mycroft.sh

start-mycroft.sh is used to start one, or all, Mycroft services. This script uses the virtualenv created by dev_setup.sh.

The usage of start-mycroft.sh is:

usage: start-mycroft.sh [command] [params]

Services:
  all                      runs core services: bus, audio, skills, voice
  debug                    runs core services, then starts the CLI

Services:
  audio                    the audio playback service
  bus                      the messagebus service
  skills                   the skill service
  voice                    voice capture service
  wifi                     wifi setup service
  enclosure                mark_1 enclosure service

Tools:
  cli                      the Command Line Interface
  unittest                 run mycroft-core unit tests

Utils:
  skill_container <skill>  container for running a single skill
  audiotest                attempt simple audio validation
  audioaccuracytest        more complex audio validation
  sdkdoc                   generate sdk documentation

Examples:
  start-mycroft.sh all
  start-mycroft.sh cli
  start-mycroft.sh unittest

To start all Mycroft services at once

$ ./start-mycroft.sh all
Starting all mycroft-core services
Initializing...
Starting background service bus
Starting background service skills
Starting background service audio
Starting background service voice

To start individual Mycroft services

Services can also be started individually.

$ ./start-mycroft.sh audio
Initializing...
Starting background service audio

Stopping Mycroft services

$ ./stop-mycroft.sh
Stopping all mycroft-core services

Pairing Mycroft for Linux

Once successfully installed, you will need to pair your Mycroft for Linux Device with your home.mycroft.ai account.

Speak

Hey Mycroft, pair my device

Mycroft will Speak "I am connected to the internet and need to be paired. Your 6-digit Registration Code is XXXXXX"

Use the Registration Code to pair your Mycroft for Linux Device with home.mycroft.ai.

View the home.mycroft.ai documentation to learn how to add your Device to home.mycroft.ai.

Once paired, you can then use basic Skills.

Using Mycroft behind a proxy

Many schools, universities and workplaces run a proxy on their network. If you need to type in a username and password to access the external internet, then you are likely behind a proxy.

If you plan to use Mycroft behind a proxy, then you will need to do an additional configuration step.

NOTE: In order to complete this step, you will need to know the hostname and port for the proxy server. Your network administrator will be able to provide these details. Your network administrator may want information on what type of traffic Mycroft will be using. We use https traffic on port 443, primarily for accessing ReST-based APIs.

Using Mycroft behind a proxy without authentication

If you are using Mycroft behind a proxy without authentication, add the following environment variables, changing the proxy_hostname.com and proxy_port for the values for your network. These commands are executed from the Linux command line interface (CLI).

$ export http_proxy=http://proxy_hostname.com:proxy_port
$ export https_port=http://proxy_hostname.com:proxy_port
$ export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com,0.0.0.0,::1"

Using Mycroft behind an authenticated proxy

If you are behind a proxy which requires authentication, add the following environment variables, changing the proxy_hostname.com and proxy_port for the values for your network. These commands are executed from the Linux command line interface (CLI).

$ export http_proxy=http://user:password@proxy_hostname.com:proxy_port
$ export https_port=http://user:password@proxy_hostname.com:proxy_port
$  export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com,0.0.0.0,::1"

Keeping Mycroft for Linux updated

Keeping your mycroft-core installation up to date is simple.

  1. Change to the directory where your mycroft-core installation is. This is most likely at ~/mycroft-core

  2. Type git stash - this preserves your Mycroft configuration. git may prompt you to set up an identity.

  3. Type git pull to get the latest code. By default, using a git installation will bring down the dev branch of the repo. If you want to pull down another branch - for instance to test it - use git pull origin BRANCH_NAME.

  4. Type git stash pop to return the configuration that was stashed with git stash

  5. Type ./update_dev.sh to update your virtualenv - it's a good idea to do this if you update your mycroft-core installation.

  6. Type ./start-mycroft.sh all to restart the services

Removing Mycroft for Linux from your system

If you have installed mycroft-core using the git-clone method, then removing it requires a couple of steps.

NOTE: depending on your system, you may need to run the commands below with sudo

  • Remove the mycroft-core directory from wherever you installed it:

rm -R ~/yourpath/to/mycroft-core

  • Next, remove the Skills directories:

rm -R /opt/mycroft

  • Next, remove the Mycroft settings:

rm -R ~/.mycroft

Common issues with Mycroft for Linux

Removing and rebuilding your virtualenv

If your CLI won't run, it is highly likely to be an issue with the Mycroft virtual environment. The easiest solution we've found has been to remove and reinstall the virtual environment.

First, delete the existing virtual environment:

sudo rm -R ~/.virtualenvs/mycroft

Next, we run the setup script again:

mycroft-core$ ./dev_setup.sh

This will rebuild your

virtualenv

Installation warns about bad interpreter

When running dev_setup.sh, if you encounter a warning about a "bad interpreter", it is likely from having a space in the installation path:

./dev_setup.sh: /opt/test path/mycroft-core/.venv/bin/pip: "/opt/test: bad interpreter: No such file or directory
Warning: Failed to install all requirements. Continue? y/N

If you can't install to a path without spaces, you will have to manually verify the requirements.txt entries are installed to your virtual environment.

Last updated