What you end up with
NoScroll running on your Android. It is free, and it stays free — there is no account, no trial and no subscription at the end of this.
- Time
- About 35 minutes
- Steps
- 16
- Cost
- Free
Before you start
These are one-time installs. If you have used Terminal before, you may have them already — the first step checks.
Install Git
Apple opens a small installer.
Type this into Terminal, then press Return.
xcode-select --installYou know this worked when: Git responds with a version number
Install Node LTS
Choose the macOS Installer (.pkg).
Open downloadYou know this worked when: Node responds with a version number
Install NoScroll
Open Terminal
Keep it open beside this page.
You know this worked when: Terminal is open
Check Git and Node
Git and the current Node LTS are required.
Type this into Terminal, then press Return.
git --version node --versionYou know this worked when: Git and Node respond with version numbers
Install pnpm
The blocking engine is built with pnpm.
Type this into Terminal, then press Return.
npm install -g pnpmYou know this worked when: pnpm responds with a version number
Copy NoScroll to this Mac
Type this into Terminal, then press Return.
cd ~ if [ ! -d noscroll/.git ]; then git clone https://github.com/Blueturboguy07/noscroll.git fiYou know this worked when: A noscroll folder appears
Open the noscroll folder
Type this into Terminal, then press Return.
cd noscrollYou know this worked when: Your terminal prompt is inside the noscroll folder
Use the reviewed version
Type this into Terminal, then press Return.
git checkout 7d1c27ae8e11c551c1c11f82125a29b3f9bbf505You know this worked when: Git reports the reviewed commit
Install the engine's dependencies
Type this into Terminal, then press Return.
pnpm install --dir engineYou know this worked when: The command finishes without an error
Check the blocking rules still work
42 tests over saved copies of the sites. Failures mean the rules need a fix.
Type this into Terminal, then press Return.
pnpm --dir engine testYou know this worked when: All 42 tests pass
Build the engine into both apps
Compiles the engine and copies it, with the rule files, into both phone projects.
Type this into Terminal, then press Return.
node tools/sync-engine.mjsYou know this worked when: It prints "engine + rules synced to both shells"
Install Android Studio
It brings the Android tools and Java with it. Open it once and let it finish setup.
Open downloadYou know this worked when: Android Studio opens to its welcome screen
Open the android folder in it
Choose Open, then pick the android folder inside noscroll. Let it finish syncing.
You know this worked when: Android Studio finishes syncing without an error
Turn on USB debugging
Settings, About phone, tap Build number 7 times. Then Developer options, USB debugging.
You know this worked when: USB debugging is switched on
Press Run
Connect with a USB cable, accept the phone's debugging prompt, pick it in the menu, hit Run.
You know this worked when: NoScroll appears in your app list
Check that it works
Open NoScroll — a simple wrapper is correct on Android. Sign in to Instagram: no Reels icon.
You know this worked when: There is no Reels icon in the row along the bottom
If something goes wrong
Nothing here can damage your computer, and every step can be run again safely. If a command fails, the usual cause is the step before it not having finished.
Still stuck? Tell us what happened and we will fix the guide. Include the step number and we can usually reproduce it.