pip cache purge
Here is what the above code is Doing:
1. It’s creating a virtual environment in the directory where the script is located.
2. It’s activating the virtual environment.
3. It’s installing the packages listed in requirements.txt into the virtual environment.
4. It’s deactivating the virtual environment.
5. It’s deleting the virtual environment.
6. It’s deleting the pip cache.