• Home
  • About
    • Moon photo

      Moon

      a development programmer, backend, Java.

    • Learn More
    • Github
  • Posts
    • All Posts
    • All Tags
  • Projects

install Spotify offline on macOS

09 Nov 2025

Reading time ~1 minute

install Spotify offline on macOS

“How to install Spotify offline on macOS”, I have been troubled by this problem for a long time, util today when I read this article.


#!/usr/bin/env bash

curl --request GET -skRL \
     --url 'https://download.spotify.com/Spotify.dmg' \
     -o ~/Downloads/Compressed/dmg/Spotify.dmg
hdiutil attach ~/Downloads/Compressed/dmg/Spotify.dmg
ditto /Volumes/Spotify/Spotify.app /Applications/Spotify.app
hdiutil detach /Volumes/Spotify
# rm ~/Downloads/Compressed/dmg/Spotify.dmg

Important:

Since Spotify now officially supports Apple Silicon architecture, the approach described above has been deprecated, and the latest approach can be found in this article macOS personal configuration.

Reference

  • Sample shell scripts for Intune admins.


Spotifyoffline installationmacOS Share Tweet +1