Skip to content

Welcome to Arithmo

Arithmo is a programing lenguage that allows you to do math operations in a simple way. In this guide, you will learn how to use the Arithmo language to do math operations. Now arithmo is in beta version, and we are working to add more content. 🚀 For now, you can read the documentation to learn more about the language in this page or in the official Github.

First Steps - Requeriments

If you want to use Arithmo, you need to have installed the following tools:

  • Python 3.8 or higher
  • Pip

Installation

Create a virtual environment

MacOS and Linux
Terminal window
python3 -m venv venv
Windows
Terminal window
python -m venv venv

Activate the virtual environment

MacOS and Linux
Terminal window
source venv/bin/activate
Windows(PowerShell)
Terminal window
venv\Scripts\Activate.ps1

Install Libraries

Terminal window
pip install -r requirements.txt

Run Arithmo

Linux and MacOS
Terminal window
python src/main.py
Windows(PowerShell)
Terminal window
python src\main.py