我在使用pip for python安装模块时遇到了困难。确切的错误消息是:
Could not find a version that satisfies the requirement shapefile (from versions: DistributionNotFound: No matching distribution found for shapefile
当我输入:
pip install -vvv shapefile
我收到404状态代码说:
Could not fetch URL https://pypi.python.org/simple/shapefile/: 404 Client Error
我浏览过并看到有一个配置文件允许您更改pip安装模块的位置。但是,我无法在/.pip文件夹中找到此文件。
有谁知道如何修复我的pip配置以便我可以安装软件包?
答案 0 :(得分:2)
以下是与您的模块名称匹配的列表:PyPI search result for shapefile
也许该模块被称为pyshapefile
而不仅仅是shapefile
。
pip install pyshapefile