You just finished upgrading to macOS Tahoe, rebooted, opened About This Mac — and your available storage dropped by 10, 15, sometimes 20 gigabytes. If macOS Tahoe is taking too much space on your drive right now, you are not alone, and nothing is broken. There are several well-understood reasons this happens, and most of the bloat is temporary or safely removable once you know what you are looking at.
Why macOS Tahoe Is Using So Much Storage Right After the Update
A major macOS upgrade is not a simple file swap. The installer rewrites core system files, creates safety snapshots, and kicks off background indexing tasks — all of which compete for disk space in the hours and days after you upgrade. Here is what is actually taking up room.
1. The Tahoe Installer Application Is Still Sitting on Your Drive
When you download macOS Tahoe through Software Update or the App Store, the full installer lands in /Applications as Install macOS Tahoe.app. This file is typically 12–14 GB. Once the upgrade completes, the installer has no further purpose — but macOS does not delete it automatically. It stays put until you remove it yourself.
This is usually the single largest contributor to the post-upgrade storage spike. Check whether it is still there:
ls -lh /Applications/Install\ macOS\ Tahoe.app
If it exists, you can drag it to the Trash or delete it via Terminal:
sudo rm -rf /Applications/Install\ macOS\ Tahoe.app
Is it safe to delete? Yes. Once you have successfully booted into Tahoe, you do not need the installer unless you plan to create a bootable USB drive for another Mac. If you do, hold off until after you have made that drive.
2. Local Time Machine Snapshots Were Created Before the Upgrade
Before a major macOS upgrade begins, the system automatically creates a local Time Machine snapshot so you can roll back if something goes wrong. These snapshots are stored directly on your startup volume and can range from a few gigabytes to tens of gigabytes depending on how much data is on your machine.
You can list them in Terminal:
tmutil listlocalsnapshots /
The output will look something like:
com.apple.TimeMachine.2026-06-02-091423.local
macOS marks snapshot-backed space as purgeable, which means it does not appear as straightforwardly "used" in all views — but it does reduce the free space that applications can actually write into. The system will reclaim this space automatically under storage pressure, usually within a few days. If you want to release it sooner and you are confident the upgrade succeeded, you can delete a specific snapshot:
sudo tmutil deletelocalsnapshots 2026-06-02-091423
Replace the date string with whatever tmutil listlocalsnapshots showed you.
Is it safe to delete? Yes, once you are satisfied Tahoe is running correctly on your Mac. Do not delete these snapshots on the day of upgrade; give yourself a day or two to confirm everything works.
3. Spotlight Is Re-Indexing Your Entire Drive
After a major system update, Spotlight rebuilds its search index from scratch. During re-indexing, you may notice elevated CPU and disk activity, and the index files in /.Spotlight-V100 can temporarily consume several gigabytes. This is not waste — it is Spotlight doing its job. Re-indexing typically completes within a few hours on an SSD-equipped Mac.
You can check whether Spotlight is still indexing from the menu bar: click the magnifying glass and look for a progress bar at the bottom of the search window, or run:
mdutil -s /
Once indexing finishes, the reported storage usage will stabilize. No manual cleanup is needed here.
4. System and Developer Caches Were Rebuilt
Tahoe rebuilds a variety of system caches — dyld shared cache, kernel extension cache, font caches — after the first boot. User-level caches in ~/Library/Caches also accumulate as apps relaunch and re-warm their local data. This is normal and generally desirable; caches exist to make your Mac faster. However, they can balloon if apps misbehave or if you have not cleaned them in a long time.
You can inspect what is in your user cache folder without deleting anything:
du -sh ~/Library/Caches/* | sort -rh | head -20
Application caches — things like browser caches under ~/Library/Caches/com.apple.Safari or ~/Library/Caches/Google/Chrome — are safe to remove. System-level caches under /Library/Caches are generally safe too, though macOS will simply rebuild them the next time it needs them.
A Practical Cleanup Checklist After Upgrading to Tahoe
- Delete the installer. Check
/Applicationsfor Install macOS Tahoe.app and remove it once you no longer need it for a bootable drive. - Wait 24–48 hours. Let Spotlight finish re-indexing and let macOS reclaim purgeable snapshot space automatically before drawing conclusions about how much storage you have lost.
- Check purgeable space. In Finder, press Cmd+I on your startup disk in Finder's sidebar (or use About This Mac → More Info → Storage). Purgeable space is space macOS can free on demand — it is not truly lost.
- Review local snapshots. If purgeable space is still enormous after 48 hours, use
tmutil listlocalsnapshots /and remove pre-upgrade snapshots you no longer need. - Clean caches manually or with a tool. For a methodical pass through caches, logs, and temp files — and to surface any other large files that snuck in — Crumb can scan your disk and show you exactly what is taking space, including whether the Tahoe installer is still present and how much purgeable space is sitting on your drive.
What Is Safe to Delete vs. What to Leave Alone
| Item | Typical Size | Safe to Delete? | Notes |
|---|---|---|---|
| Install macOS Tahoe.app | 12–14 GB | Yes, after upgrade | Keep if you need a bootable installer |
| Local Time Machine snapshots | Varies | Yes, after 24–48 h | Confirm upgrade is stable first |
| ~/Library/Caches/* | 1–10 GB typical | Yes | Apps will rebuild; some may relaunch slowly |
| /Library/Caches/* | 0.5–3 GB typical | Generally yes | Requires admin password |
| Spotlight index (/.Spotlight-V100) | 2–6 GB | No (let it finish) | Deleting forces a full rebuild anyway |
| System dyld cache (/private/var/db/dyld) | 1–3 GB | No | Rebuilt automatically; deleting can break apps |
How Crumb Helps After a Tahoe Upgrade
If you would rather not piece this together with Terminal commands, Crumb handles the discovery for you. Its one-click Clean pass removes caches, logs, and temp files in one shot. The Visualize tab shows a disk map of your entire drive so you can see at a glance whether the Tahoe installer is still sitting in /Applications, and the purgeable-space indicator tells you how much the system can still reclaim. For anything unfamiliar — an unknown folder deep in your Library — Crumb's "Is this safe to delete?" feature explains what the folder does and what the risk of removing it is, so you are never guessing. You can download Crumb and run the first cleanup for free.
The Bottom Line
A sudden jump in storage usage right after a macOS Tahoe upgrade is almost always explained by a leftover installer, pre-upgrade Time Machine snapshots, and background re-indexing — none of which are permanent losses. Give the system 24–48 hours, remove the installer once you no longer need it, and check whether purgeable space resolves on its own before reaching for aggressive cleanup tools. The storage you "lost" is almost always recoverable, and in many cases macOS will reclaim it without any action on your part at all.