Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 760 Bytes

INSTALL.md

File metadata and controls

32 lines (27 loc) · 760 Bytes

Installation steps

Requirements

You will need Python and pip installed on your computer.

Installation steps for end-users

The following command will install the latest published version of owlplanner and all its dependencies:

pip install -r ui/requirements.txt

Installation steps for developers

Open a command line terminal and cd to the directory where you installed Owl. From the top directory after downloading run:

python -m build 
pip install -e .

Running the streamlit frontend

Just run the script:

owlplanner.cmd

Publishing a version (for reference)

Edit version and data in pyproject.toml. Then,

rm dist
python -m build
twine upload --repository testpypi dist/*