rmdir: failed to remove 'python2.7': Directory not empty code example
Example 1: python remove directory not empty
import shutil
shutil.rmtree('/folder_name')
shutil.rmtree('/folder_name', ignore_errors=True) # for read only files
Example 2: python remove directory not empty
import shutil
shutil.rmtree('/folder_name')