Based off:
- Download Xcode >= 14
- Run
sudo xcode-select --switch /Applications/Xcode.app
to set Xcode
Based off:
sudo xcode-select --switch /Applications/Xcode.app
to set Xcodeimport sys | |
import time | |
def progress(iterable, length=33): | |
count = avg = 0 | |
total = len(iterable) | |
then = time.time() | |
for it in iter(iterable): | |
yield it |