No distributions found for setup.py

I have a problem with pip install

. I am trying to download SQLAlchemy

and upload a gz file from here . However, when I type pip install setup.py

at the command line, I get:

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

      

I had a similar problem pip

when trying to load other libraries, and it started a day after loading Python 3.4 when I was running Python 2.7 earlier. I went over this one and tried using pip install --pre library_name

. However, this doesn't seem to work and I get a similar message above.

thank

+3


source to share


1 answer


You are using the wrong command. Please do

pip install SQLAlchemy

      



Or:

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

      

+4


source







All Articles