Project Installation

How to install and run the Pandoc program

Installation Guide for the Simplified Pandoc Project

Step 1: Get Your Hands on the Code

To download the source code to your local machine, clone the following repository using the command:

git clone https://github.com/EpitechPromo2027/B-FUN-400-PAR-4-1-mypandoc-yourusername.git

Step 2: Install Haskell and Stack

Installing Haskell Platform:

  • macOS: Open Terminal and run:

    brew install haskell-stack
  • Windows: Download and install from the Haskell Platform Official Website.

  • Linux: Use your package manager to install Haskell. For Ubuntu/Debian-based systems, run:

    sudo apt-get update && sudo apt-get install haskell-platform

Installing Stack:

  • All Platforms: Stack can be installed directly from the terminal or command prompt. Run:

    curl -sSL https://get.haskellstack.org/ | sh

Last updated