如何在Ubuntu 16.04與18.04上安裝Spotify

前言

我平常工作的環境都在Ubuntu 16.04上面進行,有時候會想要聽音樂,剛好有跟人合買Spotify。

因此也需要在Ubuntu上面安裝Spotify Client,這樣就可以聽音樂了。

本文章,是要教如何在Ubuntu 16.04與18.04上面安裝Spotify。

前置環境

首先,要有下列的環境:

  • Ubuntu 16.04或是Ubuntu 18.04

安裝

  • 首先,要有curl指令,因此先把curl指令安裝起來:

sudo apt-get update

sudo apt-get install curl

  • 接著,下載Spotify的GPG Key,因為Spotify不是Ubuntu官方所收錄的套件,因此需要額外匯入金鑰來讓Ubuntu可以核對與校驗GPG Key跟套件是不是一樣的。
  • 下面指令就是先將GPG Key匯入到Ubuntu 上的 Key儲存地方。
  • 接著將下載Spotify套件的來源網址產生一個檔案,寫入到此 /etc/apt/sources.list.d/spotify.list檔案中。
  • tee指令是將前面的輸出結果接收並把它變成輸入,並輸入到後面接的指定路徑下的檔案中,這裡就是: /etc/apt/sources.list.d/spotify.list

curl -sS https://download.spotify.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list

  • 接著,更新一下鏡像來源,並安裝Spotify Client

sudo apt-get update

sudo apt-get install spotify-client

這樣就會安裝好了,可以打開終端機輸入:「spotify」,就可以得到下面的畫面:

這樣就安裝完成了!

參考資料

  • https://www.spotify.com/nl/download/linux/
    • Spotify官方所提供的安裝方法
  • https://websiteforstudents.com/install-spotify-linux-client-on-ubuntu-16-04-18-04-desktop/
    • 這篇文章的GPG Key有問題,驗證會失敗,原因是Spotify官方有換過GPG Key,所以需要從官網直接下載。
  • https://community.spotify.com/t5/Desktop-Linux/Repository-http-repository-spotify-com-stable-InRelease-is-not/m-p/4535261#M16659
    • 這篇文章一樣有GPG Key的問題,驗證會失敗,原因是Spotify官方有換過GPG Key,所以需要從官網直接下載。