I can\'t find the correct way to install a local directory as a python package using pip.
(venv) C:\\(...)>pip install . --no-index Ignoring indexes: http://p
I can also just use:
cd your-local-repo pip install -e .
or
python setup.py install develop