为什么我不能安装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

最佳答案

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

pip install django-graphos==0.0.2a

希望能有帮助!

关于python - 为什么我不能使用pip安装此python模块?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24780600/

10-13 07:13