简体   繁体   中英

I'm trying to figure out how to install this lib on python (time)

im new to python and i was trying to install "time" library on python, i typed pip install time but the compiler said this

C:\Users\Giuseppe\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Python 3.6>pip install time ERROR: Could not find a version that satisfies the requirement time (from versions: none) ERROR: No matching distribution found for time

i dont know how to resolve, can anyone help me? please be the more simple u can cause im not too good in py, as i said im new, thx to everyone!

PS the py version is 3.6

thx everyone, im stupid xd

Time is a module that comes built-in with python so no need to install anything, just import it:

import time

Time is part of the default preinstalled libraries so you shouldn't have to install it. just use:

import time

This should already be answered here .

Since time is part of Pythons standard library you neither need to nor can you install it via pip.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM