Getting Started
What InkRider is, how to open it in Word, and how to run your first code.
What InkRider Is
InkRider lets you write Python in Word and use the result directly in the document you are working on. It is built for practical document work: generating text, tables, computed values, and other structured output without bouncing between Word and a separate notebook window.
Use InkRider when you want to:
- compute values inside the document workflow
- generate text or structured content using Python code
- mix code, markdown, and Word authoring in one working session
Before You Start
Make sure you have:
- an InkRider account
- a supported Word client
- access to the Word add-in surface you intend to use
InkRider is designed for:
- Word for Windows
- Word for Mac
- Word Online
Install and Open the Add-in
- Open Microsoft Word.
- Go to Insert → Add-ins (or Insert → Get Add-ins on some clients).
- Search for InkRider and add it.
- Open the InkRider task pane from the ribbon or the Add-ins menu. The add-in appears as a panel beside your document.
If your organization manages add-ins centrally, ask your IT administrator to deploy InkRider to your tenant.
Sign In
The first time you open InkRider, you are prompted to sign in:
- Enter the email and password for your InkRider account.
- If you do not have an account yet, use Create account to register.
- After sign-in, your plan status is visible in the add-in header.
If sign-in fails, see Troubleshooting or contact support.
Basic Workflow
- Open Microsoft Word and your document.
- Open the InkRider add-in.
- Sign in.
- Click New → Notebook to create a notebook.
- Write Python in the first cell.
- Run the cell (Shift+Enter).
- Anchor the output to a location in your Word document (optional but recommended for live documents).
- Save the document.
New to notebooks? Continue with Notebook Basics for a full walkthrough of cells, run order, and anchoring.
A Minimal First Example
total = 12
unit_price = 4.5
grand_total = total * unit_price
grand_total
Start with something that proves the loop works:
- enter the code in a notebook cell
- run it
- confirm the result appears in the output area below the cell
- anchor the result into the document when you are ready
First-Time Runtime Note
The first time you run code in a session, InkRider downloads runtime components for the in-browser environment. This can take 30–60 seconds. Later runs in the same session are much faster.
If code never runs or the session appears stuck after waiting, see JupyterLite Runtime and Troubleshooting.
What To Test First
When you are validating a new build, check these first:
- the add-in opens correctly in Word
- you can create a notebook and run a simple cell
- the output is readable in the add-in panel
- anchoring inserts output into the document (see Cell Anchoring)
- sign-in and account state behave as expected
Where To Go Next
- New to notebooks? Read Notebook Basics.
- Ready to anchor outputs? Read Cell Anchoring.
- Importing existing work? Read Importing Notebooks and Files.
- Already use Jupyter? Read Already Use Jupyter? Meet InkRider.
- Problems? Read Troubleshooting and FAQ.
- Account issues? Contact support.