Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 421 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 421 Bytes
  1. Create virtualenv
python -m venv venv
  1. Activate virtualenv
source ./venv/bin/activate
  1. Install pdoc and GitPython
pip install pdoc GitPython
  1. Install package
pip install -e .
  1. See error when running pdoc against test_package
python -m pdoc test_package
  1. No error when running pdoc directly against module outside of package
python -m pdoc ./test.py