No matching distribution found for pprint

Viewed 5237

I am trying to install the requirements.txt file for skiptracer and it keeps saying

ERROR: Could not find a version that satisfies the requirement pprint (from -r requirements.txt (line 7)) (from versions: none)
ERROR: No matching distribution found for pprint (from -r requirements.txt (line 7))

I can't even install pprint

2 Answers

pprint is a Standard Library module. That is, it comes bundled with python.

You can just import pprint in a python script without pip installing it.

To solve your issue, delete line 20 pprint=0.1 of your requirements.txt

You may also try to edit requirements.txt and rename pprint to print

Related