Hi there
Maybe a stupid question… but I am trying to install Rhasspy on a Proxmox LXC using an Debian 11.6 image.
After downloading the amd64.deb package, I am trying to run the apt install command, but always getting a “package not found” error…
root@rhasspy-server:~/downloads# ls
rhasspy_amd64.deb
root@rhasspy-server:~/downloads# apt install rhasspy_amd64.deb
Reading package lists... Done
Building dependency tree... Done
E: Unable to locate package rhasspy_amd64.deb
root@rhasspy-server:~/downloads#
using apt-get install command, I am getting the following error:
root@rhasspy-server:~/downloads# apt-get install rhasspy_amd64.deb
Reading package lists... Done
Building dependency tree... Done
E: Unable to locate package rhasspy_amd64.deb
E: Couldn't find any package by glob 'rhasspy_amd64.deb'
E: Couldn't find any package by regex 'rhasspy_amd64.deb'
root@rhasspy-server:~/downloads# ls
rhasspy_amd64.deb
From the documentation, it seems that I should use the command like this: apt install /path/to/rhasspy_<VERSION>_<ARCH>.deb
But the package does not return a version number… so is the download maybe broken?
Or have I made a mistake somewhere?
got it working with apt-get install ./rhasspy_amd64.deb
Now, I am getting the following error - which is referred here:
Reading package lists... Done
Building dependency tree... Done
Note, selecting 'rhasspy' instead of './rhasspy_amd64.deb'
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
rhasspy : Depends: libgfortran4 but it is not installable
Recommends: alsa-utils but it is not going to be installed
Recommends: espeak
Recommends: flite but it is not going to be installed
Recommends: mosquitto but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
So I guess, I need to download the libgfortran5 … ?