Installation
Marker requires Python 3.8 or newer. It is recommended to install the latest stable Python release .
From package manager
The recommended way to install marker is through pip:
pip install marker
This installs the command line utility directly. You can check it if is installed correctly by running
$ marker -h
usage: marker [-h] [-d ASSGN_DIR] [-c CONFIG] [-s SRC_DIR]
...
Manual installation from source
If you want to install from source, you can clone the repo and install using flit:
$ git clone https://github.com/mustafaquraish/marker
$ cd marker
$ pip install flit
$ flit install
If you wish to develop, you might want to install in editable mode so that Any
changes made to the code are immediately reflected in the marker command-line
utility without having to reinstall.
$ flit install -s