根本找不到 setup.py 的分布

No distributions at all found for setup.py

我遇到了 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。但是,这似乎也不起作用,我收到了与上述消息类似的消息。

谢谢

您使用了错误的命令。请

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