Subha Nawer Pushpita
Subha Nawer Pushpita

Reputation: 109

Why is 'pip install json' showing version error

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

Answers (1)

David Teather
David Teather

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

Related Questions