Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

Problem in installing the clubhouse via APT command

Writer Matthew Martinez

I am trying to install the clubhouse directly from the apt command and I get the below error:

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

The reason for this try is I can not run the snap clubhouse, as you can see below:

enter image description here

And I guess the problem of my snap version of it is because of the government or ISP filtering the clubhouse. But for becoming sure I need to install the clubhouse by apt command and I asked here.

Update:

I have tried the N0rbert suggested codes via the answer, and now I received the SMS from my active clubhouse on my phone (currently work on my android phone). But when I paste the code on the above Ubuntu app it doesn't respond, and stuck on this verification step as you can see below:

enter image description here

Thanks.

2

1 Answer

Clubhouse does not have deb-packaged version. Snap is not working for you.

So there is alternative method - transform ArchLinux PKGBUILD to plain Ubuntu install commands as shown below:

cd ~/Downloads
wget -c
sudo unzip clubhouse-linux-x64.zip -d /opt
sudo wget -c "" -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

and then run it as clubhouse or using menu

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy