-1

I would like to install the following from Git https://github.com/vis4/pyshpgeocode

I tried the following command line found in StackOverflow but doesn't work

pip install git+git://github.com/gka/pyshpgeocode.git

Thank you very much for your help

F

fredooms
  • 123
  • 8

1 Answers1

0
git clone https://github.com/gka/pyshpgeocode.git
cd pyshpgeocode/
python setup.py install
h1w
  • 78
  • 5
  • 1
    You don't need to clone the repo manually. `pip install git+https://github.com/gka/pyshpgeocode.git`. Otherwise, you won't be able to see the package in `pip list`, uninstall it, use it in `requirements.txt`, or other pip-associated operations. – MattDMo Apr 08 '22 at 15:53