Skip to content
Advertisement

How can I see the current version of packages installed by pipenv?

I’m managing my Python dependencies with pipenv. How can see the currently installed versions of packages?

I could examine Pipfile.lock, but is there a simpler way from the command line?

Advertisement

Answer

1.go in project folder.
2.first activate pipenv type pipenv shell.
3.type pip freeze

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement