PIP Could not find any downloads that satisfy the requirement SQLAlchemy

后端 未结 7 2029
闹比i
闹比i 2020-12-15 04:53
  • Ubuntu 12.04
  • Apache 2.2.22

pip has stopped working on my ubuntu server and gives the below error when I try to download anything.



        
相关标签:
7条回答
  • 2020-12-15 05:57

    Solution 1: Upgrade pip

    sudo pip install --upgrade pip -i https://pypi.python.org/simple
    

    then, you can use pip as:

    sudo pip install SQLAlchemy
    

    Solution 2: Specific the index URL with -i

    sudo pip install SQLAlchemy -i https://pypi.python.org/simple
    
    0 讨论(0)
提交回复
热议问题