pipenv install failing due to timeout

前端 未结 7 1386
清歌不尽
清歌不尽 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:18

    Can you delete your old virtualenv C:\Users\danie01\.virtualenvs

    Check the version of python inside Pipfile

    [requires]
    python_version = "3.5"
    

    After go to your project to create again your virtualenv

    cd C:\Users\danie01\fox\test\robotframework
    pipenv install
    

提交回复
热议问题