Home > Blockchain >  How to install time package for Python version 3.6
How to install time package for Python version 3.6

Time:05-16

How to download "time" package for python 3.6. I was trying to install it for weeks but I always get the same error massage. Can someone explain me what am I doing wrong.

CodePudding user response:

time is included in the standard library. All you need to do is import time. I would also highly recommend updating your Python version to a more recent version like 3.10.4.

CodePudding user response:

It's included in python’s standard library, no reason to install or download. You can just import it like so:

import time
  • Related