我无法安装 json 模块

Jac*_*kul 1 python json pip package

每当我尝试安装软件包时,都会出现此错误:

ERROR: Could not find a version that satisfies the requirement json (from versions: none)
ERROR: No matching distribution found for json
Run Code Online (Sandbox Code Playgroud)

Bru*_*tos 9

Python 有一个内置的 JSON 模块。如果这就是你要找的。只需在您的脚本或 shell 中导入:

import json
Run Code Online (Sandbox Code Playgroud)