After installing a macOS update, many users notice a large Install macOS [Version].app sitting in their /Applications folder, still taking up 12 to 14 gigabytes of space. The short answer is yes, it is safe to delete the macOS installer once your Mac has successfully updated. But there are a few situations where keeping it a little longer is worth it. This guide covers exactly when to delete it, when to hold off, and how to remove every trace of it confidently.
What the Installer Actually Is
When you download a macOS update through Software Update or the App Store, macOS saves the full installer application to /Applications. On Sonoma, Sequoia, and the newer Tahoe release, that file is named something like Install macOS Sequoia.app or Install macOS Tahoe.app. Inside it is a complete bootable installer package, including the SharedSupport.dmg that holds the actual OS image. That is why it is so large.
Once the installation finishes, macOS does not automatically remove the installer. It just sits there. Unlike the temporary files in /private/var/folders that the OS cleans up on its own, the installer app is treated as a user-placed item in /Applications and stays until you explicitly remove it.
Is It Safe to Delete the macOS Installer Once You Have Updated?
Yes. After your Mac has successfully booted into the new version of macOS, the installer has done its job. You can confirm you are on the new version by opening Apple menu > System Settings > General > About and checking the macOS version shown there. If it matches the version the installer was for, you are clear to delete.
The installer is not a recovery tool. It cannot repair your current installation the way macOS Recovery can. Deleting it will not affect system stability, your apps, your files, or future software updates. macOS downloads its own update packages independently of this installer app.
How to Delete the Installer Manually
- Open Finder and navigate to
/Applications. - Locate
Install macOS [Version].app. - Drag it to the Trash, or right-click and choose Move to Trash.
- Empty the Trash to immediately reclaim the disk space.
If you prefer Terminal, a single command handles it:
sudo rm -rf /Applications/Install\ macOS\ Sequoia.app
Replace Sequoia with the actual version name on your machine. You will be prompted for your administrator password. The sudo is not strictly required if your account owns the file, but it avoids any permission edge cases.
When You Might Want to Keep It a Little Longer
There are three scenarios where holding onto the installer before deleting makes sense.
1. You Plan to Create a Bootable USB Installer
If you manage multiple Macs and want to do a clean install on another machine without re-downloading 13 GB each time, the installer app is what you need. The standard approach is to use the createinstallmedia tool that Apple ships inside the installer itself:
sudo /Applications/Install\ macOS\ Sequoia.app/Contents/Resources/createinstallmedia \
--volume /Volumes/MyUSB
This writes a bootable installer to a USB drive (16 GB or larger). Once you have created the drive, you can safely delete the app.
2. You Have Not Confirmed the Update Succeeded
If your Mac rebooted but something feels off, check Apple menu > System Settings > General > About first. If the version number has not advanced to the new release, do not delete the installer yet. You may need it to retry the installation.
3. You Are About to Wipe and Reinstall
If your plan is to erase your Mac entirely and do a fresh install shortly, keep the installer until that process is complete. After a successful clean install, the app will either be gone (because you erased the drive) or no longer needed.
What About the Space macOS Uses for "macOS [Version]" in Storage?
Sometimes System Settings > Storage shows a separate entry labeled something like macOS Sequoia or macOS Update inside System Data, even after the installer app is gone. These are usually one of three things:
- Partially downloaded update caches stored in
/Library/Updatesor/private/var/MobileDevice/SoftwareImages. - OTA update staging files under
/private/var/folders/.../C/com.apple.SoftwareUpdate. - IPSW-style files that the Finder may have been asked to download for a connected iPhone or iPad.
These temporary update caches are safe to delete, but macOS will often clean them up on its own after a reboot or two. If they persist and you want to clear them manually, the safest route is to open Terminal and run:
sudo rm -rf /Library/Updates/*
Check that /Library/Updates contains only update package remnants before running this. Do not delete files there that belong to other system processes.
Can I Delete the Installer Before Finishing the Update?
No. If macOS is mid-install or the update is staged and waiting for a restart, deleting the installer will cause the update to fail. The system will usually re-download the installer the next time you run Software Update, but you will waste time and bandwidth. Wait until the update finishes and you have confirmed the new version is running before removing anything.
How Much Space Will You Get Back?
Current full macOS installers range from about 12 GB (for a delta update scenario where only part of the installer is cached) to 14+ GB for a full universal installer that supports multiple Mac hardware generations. On Apple Silicon Macs running Sequoia or Tahoe, the full installer is typically around 13.5 GB. That is meaningful space on a 256 GB SSD, where it represents more than five percent of total capacity.
Checking Whether the Installer Is Still Present
If you are not sure whether the installer is still on your Mac, open Terminal and run:
ls -lh /Applications | grep "Install macOS"
If nothing comes back, the installer is already gone. If a line appears with a file size, that is your installer and its size on disk.
You can also check in Finder: press Cmd+Shift+A to open /Applications, then scroll or search for "Install macOS".
The Safe-to-Delete Check: Building Confidence Before You Remove Anything
One reason people hesitate is uncertainty: what exactly is inside a 13 GB app, and will something break? The installer app is self-contained. It does not modify system files, does not register services, and has no launch agents or daemons attached to it. Removing it has no side effects on a Mac that has already completed the update.
If you are still uncertain, tools like Crumb include an "Is this safe to delete?" check that evaluates large files and app leftovers before removal, so you can see exactly what a file is and what risk (if any) removing it carries. For the macOS installer specifically, Crumb will flag it as safe to delete on an already-updated machine.
Summary: What to Do
- Confirm your Mac is running the new macOS version via System Settings > General > About.
- If you need a bootable USB installer for other machines, create it before deleting.
- Move
/Applications/Install macOS [Version].appto Trash and empty it. - If System Data still shows update-related space, a restart often clears the remaining caches automatically.
The macOS installer is one of the clearest candidates for deletion on any Mac that has already updated. It sits in plain sight, takes up a predictable amount of space, and carries zero risk once the update is complete. Removing it is one of the quickest ways to recover meaningful storage without touching anything you actually need.