ERROR: No matching distribution found for pprint

ERROR: No matching distribution found for pprint

Error when installing requirements in pip

solution:

pprint is part of the standard library, so it cannot appear in requirements.txt. In other words, it is bundled with python. You can import pprint directly in a python script without pip to install it. To solve this problem, delete pprint in requirements.txt

Guess you like

Origin blog.csdn.net/qq_41917697/article/details/114459211