Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 1.1 KB

INSTALL.md

File metadata and controls

27 lines (23 loc) · 1.1 KB

Installation

Graphical installer

A graphical installer is work in progress and will be released here soon

Pre built executable

Requirements

  • gcc (Will be fixed some time)
  1. Use the Releases section and download the version for your OS
  2. Put the executable into your PATH
  3. Open a terminal and type heiabubu --help to get started

Building from source

  1. Clone or download the source for this repository
  2. Create a new Anaconda or Miniconda Environement in the HeiabubuLang folder
    conda create --name heiabubu python=3.12.1
  3. Activate the new environment conda activate heiabubu
  4. Install the dependencies conda install llvmlite conda install termcolor pip install pyinstaller
  5. Build the execuable `pyinstaller --onefile -n heiabubu main.py
  6. Add the dist folder to your PATH
  7. Open a terminal and type heiabubu --help to get started