Reputation: 109
While I wrote 'pip install json' on my command prompt, it is giving an error - ERROR: Could not find a version that satisfies the requirement json (from versions: none) ERROR: No matching distribution found for json What should I do
Upvotes: 3
Views: 13010
Reputation: 598
Json is a standard library in python there's no need to install it.
Just include it in your python script as the following
import json
Upvotes: 11