I\'ve tried pip install time and sudo -H pip install time, but I keep getting the error:
pip install time
sudo -H pip install time
Could not find a version that sati
just use it . time library default installed in python for use : add to code :
time library default installed
import time
and use for example :
time.sleep(20) #20 second
Try using time.sleep(secs) that should work fine.
time.sleep(secs)