为什么我不能用pip安装这个python模块?

时间:2014-07-16 12:17:19

标签: python pip

为什么我不能安装django-graphos?我试过Arch和Ubuntu并得到这个错误:

pip install django-graphos
Downloading/unpacking django-graphos
  Could not find a version that satisfies the requirement django-graphos (from versions: 0.0.1a0, 0.0.2a0)
Cleaning up...
No distributions matching the version for django-graphos

1 个答案:

答案 0 :(得分:4)

这是因为包没有指定版本。 改为运行此命令:

pip install django-graphos==0.0.2a 

希望有所帮助!