我正在尝试使用pip安装此程序包:https://github.com/gka/pyshpgeocode。
我收到错误消息:
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
这是什么问题以及如何安装此软件包?
答案 0 :(得分:3)
<强>尝试:强>
git clone https://github.com/gka/pyshpgeocode.git
cd pyshpgeocode/
python setup.py install
答案 1 :(得分:1)
<强>尝试:强>
pip install git+git://github.com/gka/pyshpgeocode.git
答案 2 :(得分:0)
我尝试了相同的安装,并遇到了相同的错误no module named shapegeocode
。我认为安装未按预期进行。即,shapegeocode.py
不会放在任何地方。因此,我从GitHub下载并在安装后手动将shapegeocode.py放入.\Lib\site-packages\pyshpgeocode-0.1-py2.7.egg
(确实会更新。\ Lib \ site-packages \ easy-install.pth )。
然后它起作用了。