Skip to content

Getting Started with Primora

This guide will help you set up your Primora environment and write your first program.

Installation

Primora can be run in the browser playground or locally.

Browser Playground

Local Installation

  • Clone the Primora repo from GitHub
  • Install Python 3.9+
  • Install dependencies: pip install -r requirements.txt
  • Run the backend: python primora_backend.py
  • Open the frontend in your browser

Your First Primora Program

x = 5
y = x * 2
echo "The result is: " + y

Next Steps