Installation¶
To install a development version of the LEAP
package:
git clone https://github.com/resplab/leap.git
cd leap
pip install -e ".[dev]"
Installing pandoc
¶
If you plan on working on the docs
, you will also need to install pandoc
, as this is used
to convert Jupyter
notebooks to rst
files.
MacOS¶
brew install pandoc
pandoc --version
Linux (Ubuntu/Debian)¶
wget https://github.com/jgm/pandoc/releases/download/3.6.4/pandoc-3.6.4-1-amd64.deb
sudo dpkg -i pandoc-3.6.4-1-amd64.deb
sudo apt-get install -f
pandoc --version