Skip to content

Commit

Permalink
Add dependency installer script to make the package installation proc…
Browse files Browse the repository at this point in the history
…ess in doc-builder more generic (#5)
  • Loading branch information
bipinKrishnan committed Jun 19, 2023
1 parent 179f710 commit 5437861
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 0 additions & 5 deletions docs/prebuild.sh

This file was deleted.

8 changes: 8 additions & 0 deletions install_dependencies.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash -e

# python3-opencv and git are needed
apt-get install -y git
apt-get install -y python3-opencv

pip install -r requirements.txt || exit 1
pip install -r optional.txt || exit 1

0 comments on commit 5437861

Please sign in to comment.