通过 APT 命令安装 Clubhouse 时出现问题

通过 APT 命令安装 Clubhouse 时出现问题

我尝试直接从 apt 命令安装 clubhouse,但出现以下错误:

sudo apt install clubhouse
Reading package lists... Done
Building dependency tree       
Reading state information... Done

No apt package "clubhouse", but there is a snap with that name.
Try "snap install clubhouse"

E: Unable to locate package clubhouse

这次尝试的原因是我无法运行 snap clubhouse,如下所示:

在此处输入图片描述

我猜我的 snap 版本的问题是因为政府或 ISP 过滤了 Clubhouse。但为了确保万无一失,我需要通过命令安装 Clubhouse,apt所以我在这里询问了。

更新:

我已经尝试过诺伯特通过答案建议的代码,现在我在我的手机上收到了来自活跃俱乐部的短信(目前在我的安卓手机上工作)。但是当我将代码粘贴到上面的 Ubuntu 应用程序上时,它没有响应,并卡在这个验证步骤上,如下所示:

在此处输入图片描述

谢谢。

答案1

俱乐部不具有deb 打包版本。Snap 不适合您使用。

因此有替代方法 - 变换ArchLinux PKGBUILD简单的 Ubuntu 安装命令如下所示:

cd ~/Downloads
wget -c https://github.com/callmearta/clubhouse-desktop/releases/download/1.0.2/clubhouse-linux-x64.zip
sudo unzip clubhouse-linux-x64.zip -d /opt
sudo wget -c "https://upload.wikimedia.org/wikipedia/commons/c/c3/Clubhouse_App_Logo.svg?download" -O /opt/clubhouse-linux-x64/clubhouse.svg
sudo ln -s /opt/clubhouse-linux-x64/clubhouse /usr/local/bin/clubhouse

sudo mkdir -p /usr/local/share/applications
cat << EOF | sudo tee /usr/local/share/applications/clubhouse.desktop
[Desktop Entry]
Name=Clubhouse Desktop
Icon=/opt/clubhouse-linux-x64/clubhouse.svg
Exec=clubhouse
Terminal=false
Type=Application
StartupWMClass=Clubhouse
Comment=An unofficial Clubhouse desktop client
Categories=Utility;
EOF

update-menus

然后clubhouse以菜单方式运行它

相关内容