Elements of Programming Interviews in Python
python3.7 --version
pip3 --version
If you do not have python3.7 then look for Python installer for your OS
git https://github.com/andrewboss/epi-py.git
cd epi-py
pip3 install --user virtualenv
python3.7 -m virtualenv venv
source venv/bin/activate
pip install --upgrade -r requirements.txt
Main integration test Prover with Verifier:
python -m unittest -v tests/test_h_index.py
or all tests:
python -m unittest discover tests