I am trying to install MYCROFT on Ubuntu 18.04 following this: LINK
cd ~/
git clone https://github.com/MycroftAI/mycroft-core.git
cd mycroft-core
bash dev_setup.sh
I am getting this error:
sudo: easy_install: command not found
This error is because the script dev_setup.sh line 168 is trying to execute:
easy_install pip==9.0.1 # force version of pip
I have installed:
sudo apt-get install python-setuptools
sudo apt-get install python-pip python-dev build-essential
However the
easy_install
command is still not recognised. Any ideas?
Update:
By commenting out that line in the script allows the script to run. However there is a module error, voice recognition module missing, when doing an audio test.
--depth=1
and without). Do you have python-related PPAs?easy_install
is part ofpython-setuptools
. Please add the output ofapt policy python-setuptools
to your question.