Pithom Labs Scraper is a tool that extracts data from websites and saves it in a structured format (like a spreadsheet). It runs entirely on your computer — no account or sign-up required. You just need an internet connection and Google Chrome.
This guide will walk you through every step to get it running, even if you have never used a command line before.
- What You Need
- Download the Right File
- Setup — Windows
- Setup — macOS (Apple)
- Setup — Linux (Debian / Ubuntu)
- Common Issues
- Get Help
Before you start, make sure you have the following:
- Google Chrome — the scraper uses Chrome to visit websites. If you don't have it, download it for free at google.com/chrome.
- An internet connection — the scraper needs to visit websites to extract data from them.
That's it. No other software is required.
Go to the releases page to download the scraper:
https://github.com/PithomLabs/extract.github.io/releases
Download the file that matches your computer:
| Your Computer | Download This File |
|---|---|
| Windows (most PCs and laptops) | scraper-windows-amd64.exe |
| Mac with Apple Silicon (M1, M2, M3, M4, or newer) | scraper-darwin-arm64 |
| Mac with Intel chip (older Macs, before 2021) | scraper-darwin-amd64 |
| Linux (Debian or Ubuntu, 64-bit) | scraper-linux-amd64 |
Also download this README.md file if you haven't already — you're reading it!
- Click the Apple menu (🍎) in the top-left corner of your screen.
- Click About This Mac.
- Look for the Chip or Processor line:
- If it says Apple M1, M2, M3, or M4 → download
scraper-darwin-arm64 - If it says Intel → download
scraper-darwin-amd64
- If it says Apple M1, M2, M3, or M4 → download
Follow these steps one at a time. Each step explains exactly what to do and where to click.
Open File Explorer (the yellow folder icon on your taskbar at the bottom of the screen). Navigate to your Downloads folder. You should see a file named scraper-windows-amd64.exe.
You can put the scraper anywhere you like. Here is one easy option:
- Open File Explorer.
- Click on This PC in the left sidebar.
- Double-click on your C: drive (usually called "Local Disk (C:)").
- Right-click in an empty area → click New → click Folder.
- Name the folder
Scraperand press Enter.
You now have a folder at C:\Scraper.
- Go back to your Downloads folder.
- Right-click on
scraper-windows-amd64.exe→ click Cut (or press Ctrl+X). - Navigate to the
C:\Scraperfolder you just created. - Right-click in the empty area → click Paste (or press Ctrl+V).
- Right-click on the file → click Rename.
- Change the name to
scraper.exeand press Enter.
The Command Prompt is a text-based window where you type instructions for your computer. Here's how to open it:
- Press the Windows key on your keyboard (the key with the Windows logo, usually between Ctrl and Alt).
- Type
cmd— you will see Command Prompt appear in the search results. - Click on Command Prompt to open it.
A black window will appear with some text and a blinking cursor. This is where you will type commands.
In the Command Prompt window, type the following and press Enter:
cd C:\Scraper
This tells your computer to "go to" the Scraper folder. You should see the prompt change to show C:\Scraper>.
Type the following and press Enter:
scraper.exe ui
What happens next: Google Chrome will open automatically with the Pithom Labs Scraper dashboard. You can now start using the scraper from that browser window.
Tip: Keep the Command Prompt window open while you are using the scraper. Closing it will shut down the scraper.
Follow these steps one at a time.
Open Finder (the blue-and-white smiley face icon in your Dock at the bottom of the screen). Click on Downloads in the left sidebar. You should see a file named either scraper-darwin-arm64 or scraper-darwin-amd64 (depending on which one you downloaded).
- In Finder, click on Desktop in the left sidebar (or any location you prefer).
- Right-click (or Control-click) in an empty area → click New Folder.
- Name it
Scraperand press Return.
- Go back to your Downloads in Finder.
- Drag the downloaded file into the
Scraperfolder you just created on your Desktop. - Right-click on the file → click Rename.
- Change the name to
scraper(remove everything after "scraper") and press Return.
The Terminal is a text-based window where you type instructions for your Mac. Here's how to open it:
- Press Cmd + Space (hold down the Command key and press Space). This opens Spotlight Search.
- Type
Terminaland press Return.
A white (or black) window will appear with some text and a blinking cursor. This is where you will type commands.
In the Terminal window, type the following and press Return:
cd ~/Desktop/Scraper
This tells your Mac to "go to" the Scraper folder on your Desktop. If you put the folder somewhere else, adjust the path accordingly.
Your Mac needs permission to run the scraper. Type the following and press Return:
chmod +x scraper
This gives your computer permission to run the scraper file. You only need to do this once.
Type the following and press Return:
./scraper ui
The ./ at the beginning tells your Mac to run the file in the current folder.
What happens next: Google Chrome will open automatically with the Pithom Labs Scraper dashboard. You can now start using the scraper from that browser window.
Tip: Keep the Terminal window open while you are using the scraper. Closing it will shut down the scraper.
These instructions are for Debian-based distributions (Debian, Ubuntu, Linux Mint, Pop!_OS, etc.).
Open your file manager and navigate to your Downloads folder. You should see a file named scraper-linux-amd64.
Open a terminal (you can usually find it by searching "Terminal" in your application launcher, or press Ctrl + Alt + T).
Create a folder, move the file into it, and rename it:
mkdir -p ~/Scraper
mv ~/Downloads/scraper-linux-amd64 ~/Scraper/scraper
chmod +x ~/Scraper/scraper
cd ~/Scraper
./scraper ui
What happens next: Google Chrome will open automatically with the Pithom Labs Scraper dashboard.
Tip: Keep the terminal window open while you are using the scraper. Closing it will shut down the scraper.
What you see: A blue window appears saying "Windows protected your PC" or "Microsoft Defender SmartScreen prevented an unrecognized app from starting."
Why this happens: Windows shows this warning for any software it hasn't seen before. It does not mean the file is dangerous.
How to fix it:
- Click More info (this text link appears below the warning message).
- A Run anyway button will appear at the bottom.
- Click Run anyway.
You only need to do this the first time you run the scraper.
What you see: A popup saying the file "can't be opened because Apple cannot check it for malicious software" or "it is from an unidentified developer."
Why this happens: macOS blocks software that isn't downloaded from the App Store or from a known developer. This is a standard security feature.
How to fix it (Method 1 — easiest):
- Open Finder and navigate to your Scraper folder.
- Right-click (or Control-click) on the
scraperfile. - Click Open from the menu.
- A dialog will appear — click Open again.
macOS will remember your choice, and you won't see this warning again for this file.
How to fix it (Method 2 — if Method 1 doesn't work):
- Click the Apple menu (🍎) → System Settings (or System Preferences on older macOS).
- Click Privacy & Security.
- Scroll down. You should see a message about the scraper being blocked.
- Click Allow Anyway (or Open Anyway).
- Go back to Terminal and try
./scraper uiagain.
What you see: The Terminal shows permission denied when you try to run ./scraper ui.
Why this happens: You haven't given your Mac permission to run the file yet.
How to fix it: Run the following command in Terminal, then try launching again:
chmod +x scraper
What you see: You typed the command, but Chrome didn't open and nothing visible happened.
Check the following:
-
Is Google Chrome installed? The scraper needs Chrome to work. Download it from google.com/chrome if you haven't already.
-
Did you see an error message? Look at the Command Prompt (Windows) or Terminal (Mac/Linux) window. If there is an error message, take note of it — you can share it with support.
-
Try running the command again. Sometimes the first attempt may fail if Chrome was still starting up. Close everything and try the launch command once more.
What you see: Command Prompt shows 'scraper.exe' is not recognized as an internal or external command, operable program or batch file.
Why this happens: You are not in the correct folder, or the file was not renamed correctly.
How to fix it:
- Make sure you navigated to the right folder. Type
cd C:\Scraper(or wherever you put the file) and press Enter. - Type
dirand press Enter to list the files in the folder. Verify thatscraper.exeappears in the list. - If the file has a different name (like
scraper-windows-amd64.exe), rename it toscraper.exeand try again.
What you see: Chrome opens but shows a blank page or a connection error.
How to fix it: Wait a few seconds and refresh the page. The scraper server may still be starting up. If the problem persists, check the terminal for error messages.
What happened: You closed the Command Prompt (Windows) or Terminal (Mac/Linux) window.
How to fix it: The scraper runs inside that window. When you close it, the scraper stops. Re-open Command Prompt or Terminal, navigate to your folder, and run the launch command again:
- Windows:
scraper.exe ui - macOS / Linux:
./scraper ui
If you are stuck on any step or encounter an issue not listed above, we are happy to help.
Visit our support page:
When reaching out, it helps if you can share:
- Which step you are on
- What operating system you are using (Windows, Mac, or Linux)
- Any error message you see in the Command Prompt or Terminal window (you can copy text from there and paste it into your message)
All Rights Reserved.
© Pithom Labs