pipenv install failing due to timeout

前端 未结 7 1393
清歌不尽
清歌不尽 2021-02-13 16:56
C:\\Users\\danie01\\fox\\test\\robotframework>pipenv install --python 3.5
Creating a virtualenv for this project...
Pipfile: C:\\Users\\danie01\\fox\\test\\robotframe         


        
7条回答
  •  醉酒成梦
    2021-02-13 17:37

    I was using the url = "https://pypi.tuna.tsinghua.edu.cn/simple", and for each dependence installed, I would have a timeout error. When I changed the url to simple worked.

    [[source]]
    name = "pypi"
    url = "https://pypi.python.org/simple"
    verify_ssl = true
    

提交回复
热议问题