WARNING: You are using pip version 21.1.2; however, version 21.3.1 is available.

ERROR Could not find a version that satisfies the requirement time (from versions: none)
ERROR  No matching distribution found for time
WARNING: You are using pip version 21.1.2; however, version 21.3.1 is available.
You should consider upgrading via the 'D:\pythonProject6\venv\Scripts\python.exe -m pip install --upgrade pip' command.

求问各位牛人 这个time 包安装不上该如何解决?

time是python内置标准模块,pip安装时后提示没有匹配。使用
import sys
print(sys.builtin_module_names)
就可以看到有time内置模块。
至于提示升级 pip版本的警告不是导致问题的根本,可以暂时不用管。

字面意思是pip版本低了,让你升级

警告:您正在使用pip 21.1.2版本;但是,21.3.1版本是可用的。
版本不匹配,升级pip到21.3.1版本即可。
希望对题主有所帮助,望采纳!