错误:
/snap/spotify/57/usr/bin/spotify: error while loading shared libraries: libasound.so.2: cannot open shared object file: No such file or directory发布于 2022-01-27 04:28:00
解决办法是使用spotify的apt版本,而不是snap版本。
首先,删除抓取版本。打开终端并输入命令
sudo snap remove spotify这个答案的下一部分是基于正式指示的。
现在添加公钥。
curl -sS https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.gpg | sudo apt-key add - 现在添加存储库。
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list更新软件索引。
sudo apt update安装spotify。
sudo apt install spotify-clienthttps://askubuntu.com/questions/1389503
复制相似问题