Skip to content

Installation

Asher Winstead edited this page Oct 7, 2024 · 4 revisions

Installation Guide

Cloning the Repository

to get started with Safron, clone the repository to your local machine:

git clone https://github.com/MrAshCreates/Safron.git

Building Safron

Requirements

  • Operating System: Unix-like systems (Linux, macOS)
  • Compiler: C++20 compatible compiler (e.g., GCC 9+, Clang 10+)
  • Tools: CMake 3.10 or higher
  • Libraries: cURL library

Step

  1. Navigate to the cloned repository:
cd Safron
  1. Create a build directory and navigate into it:
mkdir build && cd build
  1. Configure the project using CMake:
cmake ..
  1. Build the project:
make

Installing Safron

After building, you can install Safron using:

sudo make install

Alternatively you can run this...

cd Safron
mkdir build && cd build
cmake .. 
make && sudo make install
Clone this wiki locally