nickjj / docker-django-example

A production ready example Django app that's using Docker and Docker Compose.
MIT License
1.17k stars 249 forks source link

freeze no longer used. #23

Closed jbhrfx9280 closed 1 year ago

jbhrfx9280 commented 1 year ago

pip freeze is no longer used. Replaced by pipreqs.

nickjj commented 1 year ago

pipreqs is a separate package based on what's listed here https://github.com/bndr/pipreqs which generates a requirements file based on your imports. The pip freeze command doesn't depend on any external packages, it's the standard way to get a list of installed packages using pip.