Skip to content

Installation & Setup

Nika Natsvlishvili edited this page Dec 29, 2025 · 1 revision

⚙️ Installation-&-Setup.md

Prerequisites

  • Python 3.10 or higher.

1. Clone the Repository

git clone https://github.com/nikanats/nikanats-logos.git
cd nikanats-logos

2. Set up the Environment

It is recommended to use a virtual environment.

# Create virtual environment
python -m venv .venv

# Activate (Windows)
.venv\Scripts\activate

# Activate (Linux/macOS)
source .venv/bin/activate

3. Install Dependencies

The interpreter relies on lark for parsing.

pip install lark

4. Running Code

To run a Logos file (.lg):

python logos.py path/to/script.lg

To run the Interactive Confessional (REPL):

python logos.py

Clone this wiki locally