From 6d78ba7a430efae5f44563342d01dbabcf66f6a4 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Tue, 8 Jun 2021 08:58:25 -0400 Subject: [PATCH] Add Windows make convenience script --- README.md | 6 ++++++ make.bat | 1 + 2 files changed, 7 insertions(+) create mode 100644 make.bat diff --git a/README.md b/README.md index fda16a42f..f71991349 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,13 @@ From the same Terminal (or command prompt) run the following: cd docs/ pip install virtualenv virtualenv -p python3 venv + +# Linux/Mac source venv/bin/activate + +# Windows +venv\scripts\activate + pip install -r requirements.txt ``` diff --git a/make.bat b/make.bat new file mode 100644 index 000000000..01e7d561a --- /dev/null +++ b/make.bat @@ -0,0 +1 @@ +if "%1"=="livehtml" sphinx-autobuild --open-browser -H localhost -b html "source" "_build" \ No newline at end of file