下面是我输入的安装命令。为什么这不管用?
$ sudo apt install bitwig-studio-3.3.11.deb
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package bitwig-studio-3.3.11.deb
E: Couldn't find any package by glob 'bitwig-studio-3.3.11.deb'$ sudo apt install bitwig-studio-3.3.11.deb
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package bitwig-studio-3.3.11.deb
E: Couldn't find any package by glob 'bitwig-studio-3.3.11.deb'$ sudo apt install /bitwig-studio-3.3.11.deb
Reading package lists... Done
E: Unsupported file /bitwig-studio-3.3.11.deb given on commandline'发布于 2021-07-16 21:39:18
您的语法不正确。
如果您从internet下载了一个.deb,并且希望使用apt安装它,则必须将cd安装到.deb文件所在的目录中。
然后您需要运行sudo apt install ./yourdebfile.deb。
您应该在sudo apt update中的任何其他命令之前运行apt,以确保您的包管理器与最新的软件列表保持一致。否则,您可能会遇到依赖问题。
请注意,.必须位于/之前。
https://askubuntu.com/questions/1352330
复制相似问题