Table of Contents

This guide will walk you through using the notes2notion tool to move your Apple Notes into Notion. I've made this as simple as possible for someone with no technical experience.

What You'll Need

About 15-30 minutes of time

Step 1: Install Homebrew (The Easy Way to Install Other Tools)

  1. Open the "Terminal" app

  2. Copy and paste this entire line into Terminal, then press Enter:

    /bin/bash -c "$(curl -fsSL <https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh>)"
    
    
  3. You'll be asked to enter your computer password. Type it (it won't show as you type) and press Enter.

  4. Wait for it to finish (might take 5-10 minutes)

  5. When it's done, follow any instructions shown on the screen about adding Homebrew to your PATH (they'll show you exactly what to copy/paste)

Step 2: Install Python and Poetry

  1. In the same Terminal window, type this and press Enter:

    brew install python3 poetry
    
    
  2. Wait for the installation to complete (5-10 minutes)

Step 3: Download the Notes2Notion Tool

  1. In the same Terminal window, type these commands one by one, pressing Enter after each:

    cd ~/Downloads
    git clone <https://github.com/jheddings/notes2notion.git>
    cd notes2notion
    
    
  2. Install the required components:

    poetry install --sync