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.
On Ubuntu 18.04 I was able to
pip install python-setuptools
and run easy_install by full-path'ing it:I prefer this over installing the
python-pip
system package becausepip
is moving faster than the distros update it, so I install it from PyPI.HTH!
I got this from this link: I am not able to install easy_install in my ubuntu.
If that doesn't work, try this:
Credits to: https://askubuntu.com/users/157039/m-tarun and https://askubuntu.com/users/20837/timo
According to the changelog
easy_install
was removed from thepython-setuptools
package.I've got no good news for you; I've not found a solution short of updating the legacy scripts to use
pip
(and hoping the versionpip
installs works).In your case its
pip
you're trying to get fromeasy_install
, so you can probably omit the line since the version ofpip
in bionic is9.0.1-2
. A better change to the script might check thatpip --version
is less than9.0.1
before trying to install that alternate version viaeasy_install
.On Ubuntu 18.04, I got the same error several times, I searched on many links but didn't get a useful solution.
For this, the version of the pip should be less than or the same as 9.0.1.
First of all, install the pip for python version 3 from-
and check pip version-
after that, we have to install build-essential for python-dev
and python setup-tools
And finally, we are able to install pymongo by following command-
It worked for me, may it will work for you too.
easy_install is not a part of python setup-tools so instead you can go for pip3 for installing python modules if pip is not found the following should solve your issue.