Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I can't install json module [closed]

Whenever I try to install a package I get this error:

ERROR: Could not find a version that satisfies the requirement json (from versions: none)
ERROR: No matching distribution found for json
like image 714
Jacob Gokul Avatar asked Mar 25 '26 22:03

Jacob Gokul


1 Answers

Python has a built-in JSON module. If that's what you're looking for. Just import in your script or shell:

import json
like image 114
Bruno Santos Avatar answered Mar 27 '26 10:03

Bruno Santos