How to resolve Python package depencencies with pipenv?

后端 未结 12 2524
余生分开走
余生分开走 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:42

    It happened the same to me, I'm working with Visual Studio Code and I was able to get rid o it:

    • remove all files except *.py from your python folder (.vscode, pycache, * virtual environments within that folder)
    • create a new virtualenv env(name)
    • new\scripts\activate.bat

    and then try to install the missing dependencies for the virtual folder and good to go, it worked for me.

提交回复
热议问题