2

I am trying to local install through pip using the following command:

# while positioned at the repository's root
pip3 install -e installator

and getting the following error:

Installator should either be a path to a local project or a VCS url beginning with svn+, git+, hg+, or bzr+
ppwater
  • 2,315
  • 4
  • 15
  • 29
Duttonide
  • 21
  • 1
  • 2

2 Answers2

4

You should do
pip3 install -e git+YOUR-GITHUB-URL#egg=YOUR_PACKAGE_NAME
example:

pip3 install -e git+https://github.com/user/repo.git#egg=mypackagename

REFERENCE and more docs:
https://pip.pypa.io/en/stable/reference/pip_install/#examples

gl3yn
  • 301
  • 1
  • 3
  • 13
3

You can also try navigating to your home directory and give:

pip install -e .   
Sohdeep
  • 131
  • 1
  • 1
  • 6