Error while installing with Python “pip”: Cannot fetch index base URL http://

后端 未结 4 1435
醉酒成梦
醉酒成梦 2020-12-31 12:30

I am trying to install a local version of ScrumDo for testing. Only then I come to the point in my installation that I have to run:

source bin/activate <

4条回答
  •  佛祖请我去吃肉
    2020-12-31 12:53

    Try giving the proxy settings in the command as such

    pip --proxy=http://user:password@Proxy:PortNumber install -r requirements.txt 
    

    or try

    export http_proxy=http://user:password@Proxy:PortNumber
    

提交回复
热议问题