How to resolve Python package depencencies with pipenv?

后端 未结 12 2520
余生分开走
余生分开走 2020-12-13 06:35

I am using pipenv to handle a Python package dependencies.

The Python package is using two packages (named pckg1 and pckg2) that relies on

12条回答
  •  情话喂你
    2020-12-13 06:56

    Nothing here worked for me. In the end this solved the issue:

    pip uninstall pipenv
    pip install pipenv
    

提交回复
热议问题