0

When I do the pip freeze I can see all the packages but when I do the pipenv install it is not installing any packages.

This is what I am getting when I do pipenv install.

Installing dependencies from Pipfile.lock (0a15b8)...
     ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 0/0 — 00:00:00

raj-kapil
  • 177
  • 1
  • 15

2 Answers2

3

I expect you are using pipenv virtual env as well for your project. I uninstalled all the packages from the env using: pipenv uninstall --all and then did pipenv install to install all the packages from pipfile and it worked.

0

Posting the solution for this, if someone is facing the same.

Just update your Pipfile.lock file by running the pipenv update Pipfile.lock, and then do the pipenv install.

raj-kapil
  • 177
  • 1
  • 15