我最近开始学习Python,我是Python的新手,但不是编程。我有四台机器,我可以无缝地安装Django和Python。在MacBook Pro OS 10.6.8的第五台机器上,我可以为Python2.6安装Django(或者其他任何其他软件包)但是如果我尝试使用Python 3.4.1则会出现以下错误
Downloading/unpacking django
Cannot fetch index base URL https://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement django
Cleaning up...
No distributions at all found for django
Storing debug log for failure in /Users/himmy/.pip/pip.log
我尝试在网上搜索,我找到的最接近的是
Can't Install `pip` for `python 3.3` but worked fine for `python 2.7`
并没有真正解决问题。
先谢谢
答案 0 :(得分:0)
将pip降级到版本1.2解决了这个问题。最简单的方法 实现这一点是:
curl -O pypi.python.org/packages/source/p/pip/pip-1.2.1.tar.gz tar xvfz pip-1.2.1.tar.gz cd pip-1.2.1 python setup.py install