Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pip won't install package

I am trying to install this package: https://github.com/gka/pyshpgeocode using pip.

I get the error message:

Cannot unpack file c:\users\alexis\appdata\local\temp\pip-xljjwr-unpack\pyshpgeocode.git (downloaded from c:\users\alexis\appdata\local\temp\pip-jtyh7r-build, content-type: text/html; charset=utf-8); cannot detect archive format
Cannot determine archive format of c:\users\alexis\appdata\local\temp\pip-jtyh7r-build

What is this problem and how else can I install this package?

like image 708
Alexis Eggermont Avatar asked Dec 18 '22 22:12

Alexis Eggermont


1 Answers

Try:

pip install git+git://github.com/gka/pyshpgeocode.git
like image 181
Fringo Avatar answered Dec 31 '22 14:12

Fringo