I am using pipenv to handle a Python package dependencies.
The Python package is using two packages (named pckg1
and pckg2
) that relies on
This works when there are unfinished routines on pipfile.
Once I made a mistake and run
pipenv install codecove # With an 'e' at the end
and the pipenv kept always trying to complete the installation with no success because the lib does not exist. I resolved it with:
pipenv uninstall codecove
and installed codecov after.
I tried to run
pipenv lock --clear
pipenv lock --pre --clear
but only after uninstalled the lib with wrong name I succeeded.