mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-28 06:05:44 -04:00
install pandoc [ci skip]
This commit is contained in:
parent
8ab58a7bd0
commit
67ae9760db
1 changed files with 8 additions and 1 deletions
|
|
@ -1,7 +1,13 @@
|
|||
#!/bin/bash
|
||||
if [[ $(command -v pandoc 2 > /dev/null) ]]; then
|
||||
echo need to install pandoc
|
||||
sudo apt-get install -y pandoc
|
||||
fi
|
||||
pandoc --version
|
||||
if [[ "$?" != 0 ]]; then
|
||||
echo broken pandoc installation
|
||||
exit 1
|
||||
fi
|
||||
if [[ -z "$VIRTUAL_ENV" ]]; then
|
||||
USEROPT=--user
|
||||
else
|
||||
|
|
@ -9,7 +15,8 @@ else
|
|||
fi
|
||||
python3 -m pip install --upgrade pip --quiet $USEROPT
|
||||
python3 -m pip install MarkupSafe --use-pep517 --quiet $USEROPT
|
||||
python3 -m pip install mkdocs==1.3.1 --quiet $USEROPT
|
||||
#python3 -m pip install mkdocs==1.3.1 --quiet $USEROPT
|
||||
python3 -m pip install mkdocs==1.4.0 --quiet $USEROPT
|
||||
python3 -m pip install mkdocs-material --quiet $USEROPT
|
||||
python3 -m pip install git+https://github.com/cmitu/mkdocs-altlink-plugin/ --use-pep517 --quiet $USEROPT
|
||||
python3 -m pip install python-markdown-math --quiet $USEROPT
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue