Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1013 Bytes

INSTALLATION-linux.md

File metadata and controls

49 lines (30 loc) · 1013 Bytes

Linux Installation Guide

Prerequisites

Installing Python and Python pipenv packages

ArchLinux based distributions

sudo pacman -S python python-pip python-pipenv enchant aspell nuspell voikko hspell

Ubuntu/Debian based distributions

sudo apt install -y python3 python3-pip libenchant-2-dev libenchant-2-voikko aspell nuspell hspell

Install pipenv using pip

For installing pipenv on your system use the following command.

⚠️ Not required for ArchLinux

pip install pipenv

Install the dependencies inside python virtual environment

Use following command to setup python virtual environment for building docs.

pipenv update

Enter the python virtual environment

Use following command to enter python virtual environment.

pipenv shell

After successfully following the setup you have proper environment setup to build vicharak-docs.

Follow the Editing Guide for more information.