找不到setup.py的发行版

时间:2015-06-17 21:31:50

标签: python pip

我遇到了pip install的问题。我正在尝试下载SQLAlchemy并从here下载gz文件。但是,当我在命令提示符下键入pip install setup.py时,我得到:

Downloading/unpacking setup.py 
Could not find any downloads that satisfy the requirement setup.py
Cleaning up..
No distributions at all found for setup.py

我在尝试下载其他库时遇到了与pip类似的问题,这是在我下载Python 3.4后的第二天开始发生的,当时我之前运行的是Python 2.7。我查看了this并尝试使用pip install --pre library_name。但是,这似乎并没有起作用,我得到了与上面相似的消息。

谢谢

1 个答案:

答案 0 :(得分:5)

您使用的是错误的命令。请做

pip install SQLAlchemy

或者:

python setup.py install  # If you want to manually extract the package for installation for some reason, but this is not required with pip