Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 406 Bytes

File metadata and controls

14 lines (11 loc) · 406 Bytes

Open CMD
pip install build if you don't have it\

pip install --upgrade build

Build the Wheel\

python -m build --wheel

Install the Wheel\

pip install .\dist\deppth2-0.1.6.3-py3-none-any.whl
Wildcard: pip install .\dist\deppth2*.whl

Delete dist, build wheel, install wheel\

del .\dist\deppth2* && python -m build --wheel && for %i in (.\dist\deppth2*.whl) do pip install "%i" --force-reinstall