kalliope-project / kalliope

Kalliope is a framework that will help you to create your own personal assistant.
https://kalliope-project.github.io/
GNU General Public License v3.0
1.71k stars 230 forks source link

Mistake in Raspberry installation procedure #644

Closed jig0r0 closed 3 years ago

jig0r0 commented 3 years ago

Hello,

https://kalliope-project.github.io/kalliope/installation/raspbian/

Installation fails because libttspico-utils depends on libttspico0.

wget http://ftp.fr.debian.org/debian/pool/non-free/s/svox/libttspico-utils_1.0+git20130326-9_armhf.deb
wget http://ftp.fr.debian.org/debian/pool/non-free/s/svox/libttspico0_1.0+git20130326-9_armhf.deb
wget http://ftp.fr.debian.org/debian/pool/non-free/s/svox/libttspico-data_1.0+git20130326-9_all.deb
sudo dpkg -i libttspico-data_1.0+git20130326-9_all.deb
sudo dpkg -i libttspico-utils_1.0+git20130326-9_armhf.deb
sudo dpkg -i libttspico0_1.0+git20130326-9_armhf.deb

Proposed change:

wget http://ftp.fr.debian.org/debian/pool/non-free/s/svox/libttspico-utils_1.0+git20130326-9_armhf.deb
wget http://ftp.fr.debian.org/debian/pool/non-free/s/svox/libttspico0_1.0+git20130326-9_armhf.deb
wget http://ftp.fr.debian.org/debian/pool/non-free/s/svox/libttspico-data_1.0+git20130326-9_all.deb
sudo dpkg -i libttspico-data_1.0+git20130326-9_all.deb
sudo dpkg -i libttspico0_1.0+git20130326-9_armhf.deb
sudo dpkg -i libttspico-utils_1.0+git20130326-9_armhf.deb

=> just interchange the last two lines.

Thanks for this really cool open source project.

Alexis

Sispheor commented 3 years ago

Feel free to send a PR

whsecurity commented 3 years ago

Hello, +1 vote for the above error. Also I had problem with the cryptography installation and I solved by their documentation: https://cryptography.io/en/latest/installation.html Specifically sudo apt-get install build-essential libssl-dev libffi-dev \ python3-dev cargo

Regards, George

Sispheor commented 3 years ago

Fixed. Thx