désinstaller python3 wsl

#removing all python3 versions and their packages
sudo apt-get remove --auto-remove python3 
#remove a specific version (replace X with version #)
sudo apt-get remove --auto-remove python3.X 
amahi2001