How can you save all of your packages in requirements format to the file rec.txt? Write the code that does that below. code example
Example: how to generate requirements.txt django
For Unix families: pip3 freeze > requirements.txt
For Windos: pip freeze > requirements.txt