gooofy / zamia-speech

Open tools and data for cloudless automatic speech recognition
GNU Lesser General Public License v3.0
443 stars 86 forks source link

Permisson denied when trying to install zamia speech on Ubuntu? #74

Open lukaguinan opened 4 years ago

lukaguinan commented 4 years ago

I tried installed this using the Debain instructions for Ubuntu because I figured based on the types of commands being run it was very similar. I got to the second step but when I run this sudo -i echo "deb http://goofy.zamia.org/repo-ai/debian/stretch/amd64/ ./" >/etc/apt/sources.list.d/zamia-ai.list , I get the following error... bash: /etc/apt/sources.list.d/zamia-ai.list: Permission denied. Any ideas or does it just not work for Ubuntu?

yves84 commented 4 years ago

Try the commands seperatly:

sudo -i             # enter password
echo ....

Maybe you run the echo command as sudo, but not the insertion into the list file.

i hope it helps.