Wednesday, May 3, 2023

Easy way to completely uninstall python


The process is only for Windows OS 

1) run the following command from cmd

pip list   // list out the all the package

pip freeze > requirements.txt    // save to a fle 

pip uninstall -r requirements.txt -y   // uninstall from the file 

2) then run > appwiz.cpl >  uninstall the python 


Easy way to completely uninstall python

The process is only for Windows OS  1) run the following command from cmd pip list   // list out the all the package pip freeze > require...